-- MySQL dump 10.19  Distrib 10.3.31-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: dev34_wp949
-- ------------------------------------------------------
-- Server version	10.3.31-MariaDB

/*!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 `wp9l_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp9l_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `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_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`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_actionscheduler_actions`
--

LOCK TABLES `wp9l_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp9l_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp9l_actionscheduler_actions` VALUES (16,'wc-admin_import_customers','complete','2021-10-20 00:00:20','2021-10-20 00:00:20','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1634688020;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1634688020;}',2,1,'2021-10-20 00:01:11','2021-10-20 00:01:11',0,NULL),(14,'wc-admin_import_customers','complete','2021-10-05 23:53:37','2021-10-05 23:53:37','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1633478017;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1633478017;}',2,1,'2021-10-05 23:54:32','2021-10-05 23:54:32',0,NULL),(15,'wc-admin_import_customers','complete','2021-10-06 00:57:52','2021-10-06 00:57:52','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1633481872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1633481872;}',2,1,'2021-10-06 00:58:44','2021-10-06 00:58:44',0,NULL);
/*!40000 ALTER TABLE `wp9l_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp9l_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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=481 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_actionscheduler_claims`
--

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

--
-- Table structure for table `wp9l_actionscheduler_groups`
--

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

--
-- Dumping data for table `wp9l_actionscheduler_groups`
--

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

--
-- Table structure for table `wp9l_actionscheduler_logs`
--

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

--
-- Dumping data for table `wp9l_actionscheduler_logs`
--

LOCK TABLES `wp9l_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp9l_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp9l_actionscheduler_logs` VALUES (24,16,'action complete via WP Cron','2021-10-20 00:01:11','2021-10-20 00:01:11'),(23,16,'action started via WP Cron','2021-10-20 00:01:11','2021-10-20 00:01:11'),(22,16,'action created','2021-10-20 00:00:15','2021-10-20 00:00:15'),(16,14,'action created','2021-10-05 23:53:32','2021-10-05 23:53:32'),(17,14,'action started via WP Cron','2021-10-05 23:54:32','2021-10-05 23:54:32'),(18,14,'action complete via WP Cron','2021-10-05 23:54:32','2021-10-05 23:54:32'),(19,15,'action created','2021-10-06 00:57:47','2021-10-06 00:57:47'),(20,15,'action started via WP Cron','2021-10-06 00:58:44','2021-10-06 00:58:44'),(21,15,'action complete via WP Cron','2021-10-06 00:58:44','2021-10-06 00:58:44');
/*!40000 ALTER TABLE `wp9l_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_commentmeta`
--

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

--
-- Dumping data for table `wp9l_commentmeta`
--

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

--
-- Table structure for table `wp9l_comments`
--

DROP TABLE IF EXISTS `wp9l_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_comments`
--

LOCK TABLES `wp9l_comments` WRITE;
/*!40000 ALTER TABLE `wp9l_comments` DISABLE KEYS */;
INSERT INTO `wp9l_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-09-09 02:20:35','2021-09-09 02:20:35','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);
/*!40000 ALTER TABLE `wp9l_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_links`
--

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

--
-- Dumping data for table `wp9l_links`
--

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

--
-- Table structure for table `wp9l_options`
--

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

--
-- Dumping data for table `wp9l_options`
--

LOCK TABLES `wp9l_options` WRITE;
/*!40000 ALTER TABLE `wp9l_options` DISABLE KEYS */;
INSERT INTO `wp9l_options` VALUES (1,'siteurl','https://candc117.dev34.info','yes'),(2,'home','https://candc117.dev34.info','yes'),(3,'blogname','C and C','yes'),(4,'blogdescription','Motorsport','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:325:{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:7:\"jobs/?$\";s:23:\"index.php?post_type=job\";s:37:\"jobs/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=job&feed=$matches[1]\";s:32:\"jobs/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=job&feed=$matches[1]\";s:24:\"jobs/page/([0-9]{1,})/?$\";s:41:\"index.php?post_type=job&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: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: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:32:\"header/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"header/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"header/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"header/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"header/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"header/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"header/(.+?)/embed/?$\";s:48:\"index.php?shadepro_header=$matches[1]&embed=true\";s:25:\"header/(.+?)/trackback/?$\";s:42:\"index.php?shadepro_header=$matches[1]&tb=1\";s:33:\"header/(.+?)/page/?([0-9]{1,})/?$\";s:55:\"index.php?shadepro_header=$matches[1]&paged=$matches[2]\";s:40:\"header/(.+?)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?shadepro_header=$matches[1]&cpage=$matches[2]\";s:30:\"header/(.+?)/wc-api(/(.*))?/?$\";s:56:\"index.php?shadepro_header=$matches[1]&wc-api=$matches[3]\";s:36:\"header/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"header/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"header/(.+?)(?:/([0-9]+))?/?$\";s:54:\"index.php?shadepro_header=$matches[1]&page=$matches[2]\";s:32:\"footer/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"footer/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"footer/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"footer/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"footer/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"footer/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"footer/(.+?)/embed/?$\";s:48:\"index.php?shadepro_footer=$matches[1]&embed=true\";s:25:\"footer/(.+?)/trackback/?$\";s:42:\"index.php?shadepro_footer=$matches[1]&tb=1\";s:33:\"footer/(.+?)/page/?([0-9]{1,})/?$\";s:55:\"index.php?shadepro_footer=$matches[1]&paged=$matches[2]\";s:40:\"footer/(.+?)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?shadepro_footer=$matches[1]&cpage=$matches[2]\";s:30:\"footer/(.+?)/wc-api(/(.*))?/?$\";s:56:\"index.php?shadepro_footer=$matches[1]&wc-api=$matches[3]\";s:36:\"footer/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"footer/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"footer/(.+?)(?:/([0-9]+))?/?$\";s:54:\"index.php?shadepro_footer=$matches[1]&page=$matches[2]\";s:30:\"team/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"team/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"team/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"team/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"team/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"team/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:19:\"team/(.+?)/embed/?$\";s:37:\"index.php?team=$matches[1]&embed=true\";s:23:\"team/(.+?)/trackback/?$\";s:31:\"index.php?team=$matches[1]&tb=1\";s:31:\"team/(.+?)/page/?([0-9]{1,})/?$\";s:44:\"index.php?team=$matches[1]&paged=$matches[2]\";s:38:\"team/(.+?)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?team=$matches[1]&cpage=$matches[2]\";s:28:\"team/(.+?)/wc-api(/(.*))?/?$\";s:45:\"index.php?team=$matches[1]&wc-api=$matches[3]\";s:34:\"team/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:45:\"team/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:27:\"team/(.+?)(?:/([0-9]+))?/?$\";s:43:\"index.php?team=$matches[1]&page=$matches[2]\";s:54:\"team-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?team-category=$matches[1]&feed=$matches[2]\";s:49:\"team-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?team-category=$matches[1]&feed=$matches[2]\";s:30:\"team-category/([^/]+)/embed/?$\";s:46:\"index.php?team-category=$matches[1]&embed=true\";s:42:\"team-category/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?team-category=$matches[1]&paged=$matches[2]\";s:24:\"team-category/([^/]+)/?$\";s:35:\"index.php?team-category=$matches[1]\";s:49:\"team-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?team-tag=$matches[1]&feed=$matches[2]\";s:44:\"team-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?team-tag=$matches[1]&feed=$matches[2]\";s:25:\"team-tag/([^/]+)/embed/?$\";s:41:\"index.php?team-tag=$matches[1]&embed=true\";s:37:\"team-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?team-tag=$matches[1]&paged=$matches[2]\";s:19:\"team-tag/([^/]+)/?$\";s:30:\"index.php?team-tag=$matches[1]\";s:30:\"jobs/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"jobs/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"jobs/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"jobs/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"jobs/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"jobs/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:19:\"jobs/(.+?)/embed/?$\";s:36:\"index.php?job=$matches[1]&embed=true\";s:23:\"jobs/(.+?)/trackback/?$\";s:30:\"index.php?job=$matches[1]&tb=1\";s:43:\"jobs/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?job=$matches[1]&feed=$matches[2]\";s:38:\"jobs/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?job=$matches[1]&feed=$matches[2]\";s:31:\"jobs/(.+?)/page/?([0-9]{1,})/?$\";s:43:\"index.php?job=$matches[1]&paged=$matches[2]\";s:38:\"jobs/(.+?)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?job=$matches[1]&cpage=$matches[2]\";s:28:\"jobs/(.+?)/wc-api(/(.*))?/?$\";s:44:\"index.php?job=$matches[1]&wc-api=$matches[3]\";s:34:\"jobs/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:45:\"jobs/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:27:\"jobs/(.+?)(?:/([0-9]+))?/?$\";s:42:\"index.php?job=$matches[1]&page=$matches[2]\";s:53:\"job-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?job-category=$matches[1]&feed=$matches[2]\";s:48:\"job-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?job-category=$matches[1]&feed=$matches[2]\";s:29:\"job-category/([^/]+)/embed/?$\";s:45:\"index.php?job-category=$matches[1]&embed=true\";s:41:\"job-category/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?job-category=$matches[1]&paged=$matches[2]\";s:23:\"job-category/([^/]+)/?$\";s:34:\"index.php?job-category=$matches[1]\";s:49:\"job-type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?job-type=$matches[1]&feed=$matches[2]\";s:44:\"job-type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?job-type=$matches[1]&feed=$matches[2]\";s:25:\"job-type/([^/]+)/embed/?$\";s:41:\"index.php?job-type=$matches[1]&embed=true\";s:37:\"job-type/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?job-type=$matches[1]&paged=$matches[2]\";s:19:\"job-type/([^/]+)/?$\";s:30:\"index.php?job-type=$matches[1]\";s:53:\"job-location/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?job-location=$matches[1]&feed=$matches[2]\";s:48:\"job-location/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?job-location=$matches[1]&feed=$matches[2]\";s:29:\"job-location/([^/]+)/embed/?$\";s:45:\"index.php?job-location=$matches[1]&embed=true\";s:41:\"job-location/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?job-location=$matches[1]&paged=$matches[2]\";s:23:\"job-location/([^/]+)/?$\";s:34:\"index.php?job-location=$matches[1]\";s:33:\"service/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"service/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"service/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"service/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"service/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"service/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"service/(.+?)/embed/?$\";s:40:\"index.php?service=$matches[1]&embed=true\";s:26:\"service/(.+?)/trackback/?$\";s:34:\"index.php?service=$matches[1]&tb=1\";s:46:\"service/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:41:\"service/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:34:\"service/(.+?)/page/?([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&paged=$matches[2]\";s:41:\"service/(.+?)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&cpage=$matches[2]\";s:31:\"service/(.+?)/wc-api(/(.*))?/?$\";s:48:\"index.php?service=$matches[1]&wc-api=$matches[3]\";s:37:\"service/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"service/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"service/(.+?)(?:/([0-9]+))?/?$\";s:46:\"index.php?service=$matches[1]&page=$matches[2]\";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:47:\"pf-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?service-tag=$matches[1]&feed=$matches[2]\";s:42:\"pf-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?service-tag=$matches[1]&feed=$matches[2]\";s:23:\"pf-tag/([^/]+)/embed/?$\";s:44:\"index.php?service-tag=$matches[1]&embed=true\";s:35:\"pf-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?service-tag=$matches[1]&paged=$matches[2]\";s:17:\"pf-tag/([^/]+)/?$\";s:33:\"index.php?service-tag=$matches[1]\";s:35:\"portfolio/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"portfolio/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"portfolio/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"portfolio/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"portfolio/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"portfolio/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"portfolio/(.+?)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:28:\"portfolio/(.+?)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:36:\"portfolio/(.+?)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:43:\"portfolio/(.+?)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:33:\"portfolio/(.+?)/wc-api(/(.*))?/?$\";s:50:\"index.php?portfolio=$matches[1]&wc-api=$matches[3]\";s:39:\"portfolio/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"portfolio/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"portfolio/(.+?)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";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:54:\"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-tag=$matches[1]&embed=true\";s:42:\"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-tag=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-tag/([^/]+)/?$\";s:35:\"index.php?portfolio-tag=$matches[1]\";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=2808&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:15:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";i:2;s:34:\"advanced-custom-fields-pro/acf.php\";i:3;s:27:\"buy-now-woo/buy-now-woo.php\";i:4;s:54:\"contact-form-7-mailchimp-extension/chimpmatic-lite.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:32:\"duplicate-page/duplicatepage.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:47:\"one-click-demo-import/one-click-demo-import.php\";i:9;s:23:\"revslider/revslider.php\";i:10;s:35:\"shadepro-helper/shadepro-helper.php\";i:11;s:27:\"svg-support/svg-support.php\";i:12;s:41:\"woo-product-filter/woo-product-filter.php\";i:13;s:27:\"woocommerce/woocommerce.php\";i:14;s:26:\"wp-rocketzip/wp-rocket.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','shadepro','yes'),(41,'stylesheet','shadepro','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:2:{i:1;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:41:\"woo-product-filter/woo-product-filter.php\";a:2:{i:0;s:8:\"UtilsWpf\";i:1;s:12:\"deletePlugin\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','2808','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','1646706035','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,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','49752','yes'),(100,'wp9l_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:125:{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:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";i:2;s:10:\"archives-1\";i:3;s:12:\"categories-1\";i:4;s:6:\"meta-1\";}s:21:\"shadepro_blog_sidebar\";a:6:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:8:\"search-1\";i:4;s:14:\"recent-posts-1\";i:5;s:14:\"recent-posts-2\";}s:28:\"shadepro_woocommerce_widgets\";a:2:{i:0;s:26:\"woocommerce_price_filter-1\";i:1;s:21:\"wpfwoofilterswidget-1\";}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:17:{i:1634690742;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:1634692835;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:1634693682;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:1634693688;a:1:{s:23:\"rocket_purge_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:34:\"rocket_expired_cache_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1634693691;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:1634696435;a:5:{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;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1634696444;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:1634700873;a:1:{s:20:\"mce_12hours_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"12hours\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1634701899;a:1:{s:38:\"puc_cron_check_updates-shadepro-helper\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1634722273;a:1:{s:37:\"puc_cron_check_updates_theme-shadepro\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1634744073;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:1634744074;a:1:{s:26:\"ACFFA_refresh_latest_icons\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1634744082;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:1634830483;a:1:{s:27:\"rocket_cache_dir_size_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:1634869235;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:1635003273;a:1:{s:18:\"mce_4days_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"4days\";s:4:\"args\";a:0:{}s:8:\"interval\";i:345600;}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:2:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{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:1631201575;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(173,'current_theme','ShadePro','yes'),(174,'theme_mods_shadepro','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:9:\"main-menu\";i:17;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1597201722;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:21:\"shadepro_blog_sidebar\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:23:\"shadepro_footer_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(175,'theme_switched','','yes'),(1534,'_site_transient_timeout_theme_roots','1634689794','no'),(1535,'_site_transient_theme_roots','a:4:{s:8:\"shadepro\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(172,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1634687994;s:7:\"checked\";a:4:{s:8:\"shadepro\";s:5:\"3.3.1\";s:14:\"twentynineteen\";s:3:\"2.1\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.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.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(281,'woocommerce_merchant_email_notifications','no','no'),(282,'woocommerce_cart_page_id','10','no'),(283,'woocommerce_checkout_page_id','11','no'),(284,'woocommerce_myaccount_page_id','12','no'),(285,'woocommerce_terms_page_id','','no'),(286,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(287,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(288,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(289,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(290,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(291,'woocommerce_myaccount_orders_endpoint','orders','yes'),(292,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(293,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(294,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(295,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(296,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(297,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(298,'woocommerce_logout_endpoint','customer-logout','yes'),(167,'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.8.1\";s:9:\"timestamp\";i:1631199313;}','no'),(149,'finished_updating_comment_type','1','yes'),(326,'woocommerce_inbox_variant_assignment','7','yes'),(330,'recently_activated','a:0:{}','yes'),(331,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(332,'action_scheduler_lock_async-request-runner','1634688130','yes'),(333,'woocommerce_admin_notices','a:0:{}','yes'),(336,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"bMJgj3S3LA76JzFCKY54DyXfhD7QHHe6\";}','yes'),(337,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(338,'widget_wpfwoofilterswidget','a:2:{i:1;a:1:{s:2:\"id\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;}','yes'),(339,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(340,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(341,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(342,'widget_woocommerce_price_filter','a:2:{i:1;a:1:{s:5:\"title\";s:5:\"Price\";}s:12:\"_multiwidget\";i:1;}','yes'),(343,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(344,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(345,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(346,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(347,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(348,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(349,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(350,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1546,'_site_transient_browser_ace4a307253af3628350236c42b96784','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"94.0.4606.81\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(354,'woocommerce_admin_install_timestamp','1631201682','yes'),(355,'wc_remote_inbox_notifications_wca_updated','','no'),(136,'can_compress_scripts','0','no'),(367,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:36:\"Elementor Websites of September 2021\";s:7:\"excerpt\";s:200:\"The “homepage is where the art is” in this September’s spectacular showcase. Featuring websites across the board from all around the world, this is a collection as refreshing as a spring shower.\";s:7:\"created\";i:1634145544;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/showcase-september-2021/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:45:\"15 Brand-New Elementor Landing Page Templates\";s:7:\"excerpt\";s:143:\"Browse through 15 professionally designed landing page templates, available to all Elementor Expert members (Expert, Studio, and Agency plans).\";s:7:\"created\";i:1634048355;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:126:\"https://elementor.com/blog/new-landing-page-templates/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:89:\"8 Examples of High-Converting Mobile Landing Pages (& What Marketers Can Learn From Them)\";s:7:\"excerpt\";s:179:\"65% of search traffic and 80%+ Facebook traffic is mobile today. Is your mobile landing page ready to handle this traffic? This guide will show you how to design yours to convert.\";s:7:\"created\";i:1633513719;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:119:\"https://elementor.com/blog/mobile-landing-page/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:69:\"Ask-Me-Anything Session with Elementor\'s VP Product — The Takeaways\";s:7:\"excerpt\";s:196:\"In case you missed it, here are the main takeaways from our AMA session. Our VP Product answered questions on topics ranging from performance, new features, ecommerce, what’s up ahead, and more.\";s:7:\"created\";i:1633419048;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:150:\"https://elementor.com/blog/ask-me-anything-session-with-elementors-vp-product/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:38:\"Exploring Footer Design With Elementor\";s:7:\"excerpt\";s:109:\"Discover how moving the footer to the top of your to-do list can make designing a website a whole lot easier.\";s:7:\"created\";i:1633254121;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/elementor-footer-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(1549,'_transient_timeout_elementor_remote_info_api_data_3.4.3','1634731218','no'),(1550,'_transient_elementor_remote_info_api_data_3.4.3','a:4:{s:9:\"timestamp\";s:10:\"1634686222\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:64:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:6;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:16;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:20;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:21;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:23;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:24;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:25;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:27;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:28;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:29;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:30;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:31;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:32;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:33;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:34;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:35;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:36;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:37;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:38;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:39;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:40;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:41;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:42;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:43;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:44;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:45;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:46;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:47;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:48;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:49;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:51;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:53;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:54;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:55;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:56;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:58;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:59;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:60;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:61;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:62;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:63;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.4.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:26:{i:0;s:5:\"he_IL\";i:1;s:5:\"en_GB\";i:2;s:5:\"en_NZ\";i:3;s:5:\"en_ZA\";i:4;s:5:\"en_AU\";i:5;s:5:\"en_CA\";i:6;s:5:\"sv_SE\";i:7;s:5:\"da_DK\";i:8;s:5:\"fr_FR\";i:9;s:5:\"nl_NL\";i:10;s:5:\"nb_NO\";i:11;s:5:\"de_AT\";i:12;s:2:\"fi\";i:13;s:5:\"it_IT\";i:14;s:5:\"nn_NO\";i:15;s:5:\"de_CH\";i:16;s:5:\"en_GB\";i:17;s:5:\"is_IS\";i:18;s:2:\"ga\";i:19;s:5:\"fr_BE\";i:20;s:5:\"nl_BE\";i:21;s:3:\"ast\";i:22;s:5:\"lb_LU\";i:23;s:5:\"es_ES\";i:24;s:5:\"pt_PT\";i:25;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}}','no'),(640,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(641,'revslider_server_refresh','1633761034','yes'),(642,'revslider-update-check-short','1634687996','yes'),(643,'revslider-connection','1','yes'),(644,'revslider-update-hash','5d0763093a6680e75723eaf3493b97d8','yes'),(1530,'_transient_timeout_acf_plugin_updates','1634860794','no'),(1531,'_transient_acf_plugin_updates','a:4:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:6:\"5.10.2\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"5.8\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.9.9\";}}','no'),(491,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1536,'_transient_timeout__woocommerce_helper_updates','1634731194','no'),(1537,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1634687994;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(378,'wpr_rucss_resources_version','20210429','yes'),(379,'wpr_rucss_used_css_version','20210401','yes'),(380,'wp_rocket_settings','a:77:{s:16:\"secret_cache_key\";s:22:\"613a2996aef9b846796744\";s:12:\"cache_mobile\";i:1;s:23:\"do_caching_mobile_files\";i:0;s:10:\"cache_webp\";i:0;s:17:\"cache_logged_user\";i:0;s:9:\"cache_ssl\";i:1;s:5:\"emoji\";i:1;s:6:\"embeds\";i:0;s:16:\"cache_reject_uri\";a:0:{}s:20:\"cache_reject_cookies\";a:0:{}s:15:\"cache_reject_ua\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"purge_cron_interval\";i:10;s:15:\"purge_cron_unit\";s:15:\"HOUR_IN_SECONDS\";s:11:\"exclude_css\";a:0:{}s:10:\"exclude_js\";a:0:{}s:17:\"exclude_inline_js\";a:0:{}s:12:\"defer_all_js\";i:0;s:9:\"async_css\";i:0;s:12:\"critical_css\";s:0:\"\";s:8:\"lazyload\";i:0;s:16:\"lazyload_iframes\";i:0;s:16:\"lazyload_youtube\";i:0;s:10:\"minify_css\";i:0;s:14:\"minify_css_key\";s:22:\"613a2996aefa6571578079\";s:22:\"minify_concatenate_css\";i:0;s:9:\"minify_js\";i:0;s:13:\"minify_js_key\";s:22:\"613a2996aefa8757279786\";s:21:\"minify_concatenate_js\";i:0;s:19:\"minify_google_fonts\";i:1;s:14:\"manual_preload\";i:1;s:15:\"sitemap_preload\";i:0;s:25:\"sitemap_preload_url_crawl\";s:6:\"500000\";s:8:\"sitemaps\";a:0:{}s:12:\"dns_prefetch\";a:0:{}s:13:\"preload_fonts\";a:0:{}s:18:\"database_revisions\";i:0;s:20:\"database_auto_drafts\";i:0;s:22:\"database_trashed_posts\";i:0;s:22:\"database_spam_comments\";i:0;s:25:\"database_trashed_comments\";i:0;s:27:\"database_expired_transients\";i:0;s:23:\"database_all_transients\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:27:\"automatic_cleanup_frequency\";s:0:\"\";s:3:\"cdn\";i:0;s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:13:\"do_cloudflare\";i:0;s:16:\"cloudflare_email\";s:0:\"\";s:18:\"cloudflare_api_key\";s:0:\"\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:18:\"cloudflare_devmode\";i:0;s:27:\"cloudflare_protocol_rewrite\";i:0;s:24:\"cloudflare_auto_settings\";i:0;s:23:\"cloudflare_old_settings\";s:0:\"\";s:17:\"control_heartbeat\";i:1;s:23:\"heartbeat_site_behavior\";s:18:\"reduce_periodicity\";s:24:\"heartbeat_admin_behavior\";s:18:\"reduce_periodicity\";s:25:\"heartbeat_editor_behavior\";s:18:\"reduce_periodicity\";s:18:\"varnish_auto_purge\";i:0;s:17:\"analytics_enabled\";i:0;s:21:\"sucury_waf_cache_sync\";i:0;s:18:\"sucury_waf_api_key\";s:0:\"\";s:16:\"async_css_mobile\";i:1;s:16:\"exclude_defer_js\";a:0:{}s:8:\"delay_js\";i:0;s:19:\"delay_js_exclusions\";a:0:{}s:17:\"remove_unused_css\";i:0;s:26:\"remove_unused_css_safelist\";a:0:{}s:13:\"preload_links\";i:1;s:16:\"image_dimensions\";i:0;s:16:\"exclude_lazyload\";a:0:{}s:7:\"version\";s:5:\"3.9.2\";}','yes'),(546,'_transient_health-check-site-status-result','{\"good\":16,\"recommended\":3,\"critical\":0}','yes'),(384,'shadepro','a:34:{s:8:\"last_tab\";s:1:\"1\";s:16:\"enable_preloader\";s:1:\"1\";s:19:\"custom_accent_color\";s:7:\"#473BF0\";s:13:\"heading_color\";s:7:\"#161C2D\";s:10:\"text_color\";s:7:\"#6E727D\";s:4:\"logo\";a:5:{s:3:\"url\";s:76:\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo.svg\";s:2:\"id\";s:4:\"4853\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:76:\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo.svg\";}s:10:\"white_logo\";a:5:{s:3:\"url\";s:91:\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/shadepro-logo-white.png\";s:2:\"id\";s:3:\"146\";s:6:\"height\";s:2:\"26\";s:5:\"width\";s:3:\"131\";s:9:\"thumbnail\";s:91:\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/shadepro-logo-white.png\";}s:22:\"logo_max_width_desktop\";s:3:\"120\";s:21:\"logo_max_width_mobile\";s:3:\"120\";s:15:\"body_typography\";a:12:{s:11:\"font-family\";s:12:\"Circular Std\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:18:\"heading_typography\";a:12:{s:11:\"font-family\";s:12:\"Circular Std\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"breadcrumb_on\";s:1:\"1\";s:14:\"breadcrumb_sep\";s:1:\"-\";s:21:\"breadcrumb_background\";a:7:{s:16:\"background-color\";s:11:\"transparent\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:18:\"breadcrumb_spacing\";a:5:{s:5:\"units\";s:0:\"\";s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:12:\"padding-left\";s:0:\"\";}s:21:\"breadcrumb_typography\";a:12:{s:11:\"font-family\";s:12:\"Circular Std\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:8:\"bp_title\";s:8:\"Our Blog\";s:17:\"blog_hero_caption\";s:26:\"Read our latest blog posts\";s:11:\"blog_layout\";s:13:\"right-sidebar\";s:9:\"blog_grid\";s:10:\"two-column\";s:22:\"continue_reading_title\";s:16:\"Continue reading\";s:8:\"sp_title\";s:12:\"Blog Details\";s:18:\"single_page_layout\";s:8:\"fullpage\";s:10:\"shop_title\";s:8:\"Our Shop\";s:18:\"shop_bread_caption\";s:132:\"By accessing and placing an order with Finestdevs, you confirm that you are in agreement with and bound by the terms and conditions.\";s:9:\"job_title\";s:20:\"Current job openings\";s:16:\"job_hero_caption\";s:127:\"With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.\";s:9:\"portfolio\";s:1:\"1\";s:7:\"service\";s:1:\"1\";s:4:\"team\";s:1:\"1\";s:3:\"job\";s:1:\"1\";s:12:\"redux-backup\";i:1;s:26:\"enable_404_custom_template\";b:0;s:11:\"scustom_css\";s:38:\" /** #header{\n   margin: 0 auto;\n }**/\";}','yes'),(385,'shadepro-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1631202437;}','yes'),(412,'_transient_shipping-transient-version','1631201873','yes'),(390,'elementor_scheme_color','a:4:{i:0;s:7:\"#161C2D\";i:1;s:7:\"#161C2D\";i:2;s:7:\"#6E727D\";i:3;s:7:\"#473BF0\";}','yes'),(391,'_transient_rocket_preload_complete','2','yes'),(392,'_transient_rocket_preload_complete_time','September 9, 2021 @ 3:34 pm','yes'),(357,'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;}','no'),(366,'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:896:{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:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?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:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s: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:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-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:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";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:20;}i:55;a:15:{s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-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:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";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:20;}i:56;a:15:{s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-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:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";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:20;}i:57;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:58;a:15:{s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-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:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";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:20;}i:59;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:60;a:15:{s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-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:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";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:20;}i:61;a:15:{s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-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:17:\"[\"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:20;}i:62;a:15:{s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-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:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";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:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:63;a:15:{s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-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:28:\"[\"Business\",\"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:20;}i:64;a:15:{s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-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:46:\"[\"Business\",\"Dental\",\"Health\",\"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:20;}i:65;a:15:{s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-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:49:\"[\"Adoption\",\"Involvement\",\"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:20;}i:66;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:67;a:15:{s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-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:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"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:20;}i:68;a:15:{s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-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:26:\"[\"Landing Pages\",\"Travel\"]\";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:20;}i:69;a:15:{s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-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:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";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:20;}i:70;a:15:{s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-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:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";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:20;}i:71;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:72;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:73;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:74;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:75;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:76;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:77;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:78;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:79;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:80;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:81;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:82;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:83;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:84;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:85;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:86;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:87;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:88;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:89;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:90;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:91;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:92;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:93;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:94;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:95;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:96;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:97;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:98;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:99;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:100;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:101;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:102;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:17:\"[\"Landing Pages\"]\";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:103;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:104;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:105;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:106;a:15:{s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-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:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:1;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:20;}i:107;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:108;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:109;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:110;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:111;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:112;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:113;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:114;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:115;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:116;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:117;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:118;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:119;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:120;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:121;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:122;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:123;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:124;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:125;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:6;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:126;a:15:{s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:6;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:127;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:7;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:128;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:129;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:130;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:8;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:131;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:132;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:8;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:133;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:134;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:9;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:135;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:136;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:9;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:137;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:10;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:138;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:139;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:140;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:11;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:141;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:11;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:142;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:12;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:143;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:12;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:144;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:145;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:13;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:146;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:13;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:147;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:148;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:14;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:149;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:14;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:150;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:151;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:152;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:15;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:153;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:15;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:154;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:155;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:16;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:156;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:16;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:157;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:158;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:17;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:159;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:17;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:160;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:161;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:18;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:162;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:18;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:163;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:164;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:165;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:19;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:166;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:167;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:19;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:168;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:169;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:20;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:170;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:171;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:20;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:172;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:173;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:21;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:174;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:21;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:175;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:176;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:177;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:22;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:178;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:22;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:179;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:180;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:23;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:181;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:23;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:182;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:183;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:24;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:184;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:24;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:185;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:186;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:25;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:187;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:25;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:188;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:189;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:26;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:190;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:191;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:26;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:192;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:193;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:194;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:27;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:195;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:196;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:27;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:197;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:28;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:198;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:28;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:199;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:200;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:29;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:201;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:202;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:29;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:203;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:30;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:204;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:30;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:205;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:206;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:207;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:31;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:208;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:209;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:210;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:31;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:211;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:32;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:212;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:213;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:32;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:214;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:33;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:215;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:216;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:33;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:217;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:34;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:218;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:219;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:34;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:220;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:221;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:35;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:222;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:223;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:35;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:224;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:225;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:36;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:226;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:227;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:36;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:228;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:37;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:229;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:230;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:37;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:231;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:232;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:38;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:233;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:234;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:38;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:235;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:39;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:236;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:237;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:39;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:238;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:40;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:239;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:240;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:40;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:241;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:41;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:242;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:243;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:41;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:244;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:42;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:245;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:246;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:42;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:247;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:248;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:43;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:249;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:250;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:43;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:251;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:44;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:252;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:253;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:44;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:254;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:255;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:45;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:256;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:45;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:257;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:258;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:259;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:46;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:260;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:46;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:261;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:262;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:47;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:263;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:47;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:264;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:265;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:48;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:266;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:48;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:267;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:49;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:268;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:49;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:269;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:270;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:50;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:271;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:50;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:272;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:273;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:51;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:274;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:51;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:275;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:276;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:52;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:277;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:52;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:278;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:279;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:53;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:280;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:53;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:281;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:282;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:54;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:283;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:54;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:284;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:285;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:286;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:287;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:55;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:288;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:55;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:289;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:290;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:291;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:56;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:292;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:56;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:293;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:294;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:295;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:57;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:296;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:57;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:297;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:298;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:58;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:299;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:58;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:300;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:301;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:302;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:59;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:303;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:59;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:304;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:305;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:60;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:306;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:60;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:307;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:308;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:309;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:61;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:310;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:61;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:311;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:312;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:62;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:313;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:62;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:314;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:315;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:316;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:63;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:317;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:63;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:318;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:319;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:320;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:64;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:321;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:322;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:64;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:323;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:65;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:324;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:325;a:15:{s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;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:65;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:326;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:327;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:66;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:328;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:66;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:329;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:330;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:331;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:67;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:332;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:67;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:333;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:334;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:68;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:335;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:68;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:336;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:337;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:69;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:338;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:339;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:69;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:340;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:341;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:70;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:342;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:70;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:343;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:344;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:71;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:345;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:346;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:71;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:347;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:348;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:349;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:72;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:350;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:72;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:351;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:352;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:353;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:73;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:354;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:355;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:73;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:356;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:357;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:74;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:358;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:74;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:359;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:360;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:75;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:361;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:75;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:362;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:363;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:76;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:364;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:76;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:365;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:366;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:367;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:77;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:368;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:77;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:369;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:370;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:78;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:371;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:78;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:372;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:373;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:374;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:79;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:375;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:79;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:376;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:377;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:378;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:379;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:80;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:380;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:381;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:168:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"Marketing Campaign\",\"Marketing Landing Page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:80;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:382;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:81;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:383;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:81;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:384;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:385;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:82;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:386;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:387;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:82;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:388;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:83;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:389;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:390;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:83;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:391;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:392;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:393;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:84;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:394;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:84;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:395;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:396;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:85;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:397;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:85;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:398;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:399;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:86;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:400;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:86;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:401;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:402;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:87;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:403;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:404;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:87;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:405;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:88;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:406;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:407;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:88;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:408;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:89;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:409;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:410;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:411;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:89;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:412;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:90;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:413;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:90;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:414;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:415;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:416;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:91;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:417;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:418;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:91;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:419;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:420;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:92;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:421;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:92;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:422;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:423;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:424;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:93;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:425;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:426;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:427;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:93;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:428;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:94;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:429;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:430;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:94;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:431;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:95;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:432;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:95;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:433;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:434;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:435;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:96;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:436;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:437;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:96;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:438;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:97;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:439;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:440;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:97;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:441;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:98;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:442;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:443;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:444;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:98;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:445;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:446;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:447;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:99;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:448;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:99;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:449;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:450;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:451;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:100;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:452;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:100;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:453;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:454;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:455;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:101;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:456;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:101;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:457;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:458;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:459;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:102;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:460;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:461;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:462;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:103;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:463;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:464;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:104;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:465;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:466;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:467;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:105;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:468;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:469;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:470;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:471;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:472;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:106;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:473;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:474;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:32:\"[\"Landing Pages\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:107;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:475;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:476;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:477;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:478;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:479;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:108;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:480;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:162:\"[\"cosmetics\",\"Fashion\",\"girly\",\"hairdresser\",\"Landing Pages\",\"lifestyle\",\"Makeup\",\"manicure\",\"pedicure\",\"Products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:109;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:481;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:482;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:483;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:110;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:484;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:111;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:485;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:486;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:487;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:112;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:488;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:489;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:490;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:113;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:491;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:492;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:114;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:493;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:494;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:115;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:495;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:496;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:497;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:116;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:498;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:499;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:117;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:500;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:501;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:502;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:118;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:503;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:504;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:119;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:505;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:506;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:120;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:507;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:508;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:121;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:509;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:510;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:122;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:511;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:512;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:513;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:124;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:514;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:515;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:125;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:516;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:517;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:126;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:518;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:519;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:127;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:520;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:521;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:128;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:522;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:523;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:129;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:524;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:525;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:130;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:526;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:527;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:131;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:528;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:529;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:132;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:530;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:531;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:133;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:532;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:533;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:134;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:534;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:535;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:135;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:536;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:537;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:136;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:538;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:539;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:137;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:540;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:541;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:138;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:542;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:543;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:139;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:544;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:545;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:140;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:546;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:547;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:141;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:548;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:549;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:142;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:550;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:551;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:143;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:552;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:553;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:554;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:145;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:555;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:556;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:557;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:147;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:558;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:148;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:559;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:560;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:36:\"[\"Convention\",\"Landing Pages\",\"Law\"]\";s:10:\"menu_order\";i:149;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:561;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:562;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:143:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"Ebook\",\"Landing Pages\",\"Marketing\",\"Product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:150;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:563;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:564;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:151;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:565;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:566;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:152;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:567;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:568;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:153;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:569;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:570;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:154;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:571;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:572;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:155;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:573;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:574;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:156;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:575;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:576;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:157;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:577;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:578;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:158;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:579;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:580;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:159;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:581;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:582;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:160;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:583;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:584;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:161;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:585;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:586;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:715;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;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:588;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:163;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:589;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:164;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:590;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:165;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:591;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:166;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:592;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:167;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:593;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:168;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:594;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:169;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:595;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:596;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:170;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:597;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:598;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:171;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:599;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:600;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:601;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:172;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:602;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:173;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:603;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:604;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:174;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:605;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:606;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:175;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:607;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:608;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:176;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:609;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:610;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:177;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:611;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:612;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:150:\"[\"Agent\",\"Business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"Landing Pages\",\"listing\",\"modern\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:178;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:613;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:614;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:179;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:615;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:616;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:180;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:617;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:618;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:181;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:619;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:620;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:182;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:621;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:622;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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:183;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:623;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:624;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:184;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:625;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:626;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:185;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:627;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:628;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:186;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:629;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:630;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:187;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:631;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:632;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:188;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:633;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:634;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:635;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:190;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:636;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:637;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:638;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:191;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:639;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:640;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:192;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:641;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:193;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:642;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:643;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:194;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:644;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:645;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:646;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:195;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:647;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:196;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:648;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:649;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:197;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:650;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:651;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:198;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:652;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:653;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:654;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:199;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:655;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:656;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:200;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:657;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:658;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:211:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"launch\",\"Marketing Campaign\",\"Marketing Landing Page\",\"marketing template landing page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:201;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:659;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:202;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:660;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:661;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:203;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:662;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:663;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:204;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:664;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:665;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:205;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:666;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:667;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:206;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:668;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:669;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:207;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:670;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:671;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:208;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:672;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:673;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:209;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:674;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:675;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:210;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:676;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:677;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:211;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:678;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:679;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:212;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:680;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:681;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:213;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:682;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:683;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:214;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:684;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:685;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:686;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:215;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:687;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:688;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:216;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:689;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:217;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:690;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:691;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:218;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:692;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:693;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:694;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:219;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:695;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:696;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:220;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:697;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:698;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:221;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:699;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:700;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:222;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:701;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:223;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:702;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:703;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:224;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:704;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:705;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:225;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:706;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:707;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:226;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:708;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:709;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:227;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:710;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:711;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:228;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:712;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:713;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:229;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:714;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:715;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:230;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:716;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:717;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:231;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:718;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:719;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:232;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:720;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:721;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:233;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:722;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:723;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:234;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:724;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:725;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:235;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:726;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:727;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:236;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:728;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:729;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:237;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:730;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:731;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:238;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:732;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:733;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:239;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:734;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:735;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:240;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:736;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:737;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:738;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:739;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:740;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:741;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:742;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:743;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:744;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:745;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:746;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:747;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:748;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:749;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:750;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:751;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:752;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:753;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:754;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:755;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:756;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:757;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:758;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:759;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:760;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:761;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:762;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:763;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:764;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:765;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:766;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:767;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:768;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:769;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:770;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:771;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:772;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:773;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:774;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:775;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:776;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:777;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:778;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:779;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:780;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:781;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:782;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:783;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:784;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:785;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:786;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:787;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:788;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:789;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:790;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:791;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:792;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:793;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:794;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:795;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:796;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:797;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:798;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:799;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:800;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:801;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:802;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:803;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:804;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:805;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:806;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:807;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:808;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:809;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:810;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:811;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:812;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:813;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:814;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:815;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:816;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:817;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:818;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:819;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:820;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:821;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:822;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:823;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:824;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:825;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:826;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:827;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:828;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:829;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:830;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:831;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:832;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:833;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:834;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:835;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:836;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:837;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:838;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:839;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:840;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:841;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:842;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:843;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:844;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:845;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:846;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:847;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:848;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:849;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:850;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:851;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:852;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:853;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:854;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:855;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:856;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:857;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:858;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:859;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:860;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:861;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:862;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:863;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:864;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:865;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:866;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:867;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:868;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:869;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:870;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:871;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:872;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:873;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:874;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:875;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:876;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:877;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:878;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:879;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:880;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:881;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:882;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:883;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:884;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:885;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:886;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:887;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:888;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:889;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:890;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:891;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:892;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:893;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:894;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:895;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'),(361,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(362,'acf_version','5.9.9','yes'),(365,'rocket_cache_dir_size_check','1','yes'),(353,'woocommerce_admin_version','2.5.1','yes'),(356,'wc_remote_inbox_notifications_specs','a:34:{s:16:\"wayflyer_q3_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"wayflyer_q3_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:55:\"Grow your revenue with Wayflyer financing and analytics\";s:7:\"content\";s:322:\"Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"wayflyer_q3_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Get funded\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/wayflyer/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-07-19 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-31 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\"<=\";s:5:\"value\";s:3:\"200\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";s:3:\"100\";}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"UK\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}}}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:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}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:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}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:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";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:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:38:{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:5:\"3.3.6\";}i:1;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:5:\"3.4.8\";}i:2;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:5:\"3.5.9\";}i:3;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:5:\"3.6.6\";}i:4;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:5:\"3.7.2\";}i:5;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:5:\"3.8.2\";}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:5:\"3.9.4\";}i:7;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:5:\"4.0.2\";}i:8;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:5:\"4.0.3\";}i:9;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:5:\"4.1.2\";}i:10;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:5:\"4.1.3\";}i:11;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:5:\"4.2.3\";}i:12;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:5:\"4.2.4\";}i:13;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:5:\"4.3.4\";}i:14;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:5:\"4.3.5\";}i:15;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:5:\"4.4.2\";}i:16;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:5:\"4.4.3\";}i:17;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:5:\"4.5.3\";}i:18;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:5:\"4.5.4\";}i:19;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:5:\"4.6.3\";}i:20;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:5:\"4.6.4\";}i:21;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:5:\"4.7.2\";}i:22;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:5:\"4.7.3\";}i:23;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:5:\"4.8.1\";}i:24;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:5:\"4.8.2\";}i:25;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:5:\"4.9.3\";}i:26;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:5:\"4.9.4\";}i:27;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:5:\"5.0.1\";}i:28;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:5:\"5.0.2\";}i:29;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:5:\"5.1.1\";}i:30;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:5:\"5.1.2\";}i:31;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:5:\"5.2.3\";}i:32;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:5:\"5.2.4\";}i:33;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:5:\"5.3.1\";}i:34;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:5:\"5.3.2\";}i:35;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:5:\"5.4.2\";}i:36;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:5:\"5.4.3\";}i:37;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.5.1\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";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:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";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:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";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\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{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:\"3.3.6\";}i:1;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:\"3.4.8\";}i:2;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:\"3.5.9\";}i:3;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:\"3.6.6\";}i:4;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:\"3.7.2\";}i:5;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:\"3.8.2\";}i:6;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:\"3.9.4\";}i:7;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:\"4.0.2\";}i:8;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:\"4.1.2\";}i:9;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:\"4.2.3\";}i:10;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:\"4.3.4\";}i:11;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:\"4.4.2\";}i:12;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:\"4.5.3\";}i:13;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:\"4.6.3\";}i:14;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:\"4.7.2\";}i:15;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:\"4.8.1\";}i:16;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:\"4.9.3\";}i:17;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.0.1\";}i:18;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.1.1\";}i:19;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.2.3\";}i:20;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.3.1\";}i:21;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.2\";}i:22;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:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";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:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";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\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:20:\"bbpos-chipper-launch\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"bbpos-chipper-launch\";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:42:\"Ready to grow your business beyond online?\";s:7:\"content\";s:244:\"Collect payment in person for orders placed online using WooCommerce In-Person Payments. The BBPOS Chipper card reader can process payments securely, and keep everything synced in your WooCommerce Payments dashboard – no matter where you are.\";}}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:132:\"https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}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-10-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-11-08 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}}','no'),(165,'_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.8.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.1\";s:7:\"version\";s:5:\"5.8.1\";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:1634687993;s:15:\"version_checked\";s:5:\"5.8.1\";s:12:\"translations\";a:0:{}}','no'),(278,'woocommerce_email_background_color','#f7f7f7','no'),(177,'puc_external_updates_theme-shadepro','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1634687992;s:14:\"checkedVersion\";s:5:\"3.3.1\";s:6:\"update\";O:8:\"stdClass\":5:{s:4:\"slug\";s:8:\"shadepro\";s:7:\"version\";s:5:\"3.2.8\";s:12:\"download_url\";s:56:\"https://update.grayic.com/?action=download&slug=shadepro\";s:12:\"translations\";a:0:{}s:11:\"details_url\";s:40:\"http://findestdevs.com/demos/wp/shadepro\";}s:11:\"updateClass\";s:22:\"Puc_v4p10_Theme_Update\";s:15:\"updateBaseClass\";s:12:\"Theme_Update\";}','no'),(279,'woocommerce_email_body_background_color','#ffffff','no'),(280,'woocommerce_email_text_color','#3c3c3c','no'),(184,'bodhi_svgs_plugin_version','2.3.19','yes'),(185,'elementor_version','3.4.3','yes'),(186,'elementor_install_history','a:1:{s:5:\"3.4.3\";i:1631201674;}','yes'),(187,'acffa_settings','a:2:{s:19:\"acffa_major_version\";i:5;s:20:\"acffa_plugin_version\";s:5:\"3.1.2\";}','no'),(188,'ACFFA_current_version','5.15.4','no'),(377,'wc_blocks_db_schema_version','260','yes'),(190,'wp9l_wpf_db_version','1.5.8','yes'),(191,'wp9l_wpf_db_installed','1','yes'),(192,'wpf_plugin_activation_errors','','yes'),(193,'action_scheduler_hybrid_store_demarkation','8','yes'),(194,'schema-ActionScheduler_StoreSchema','4.0.1631201675','yes'),(195,'schema-ActionScheduler_LoggerSchema','2.0.1631201675','yes'),(198,'external_updates-shadepro-helper','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1634687996;s:14:\"checkedVersion\";s:5:\"3.3.0\";s:6:\"update\";O:8:\"stdClass\":11:{s:4:\"slug\";s:15:\"shadepro-helper\";s:7:\"version\";s:5:\"3.2.5\";s:12:\"download_url\";s:63:\"https://update.grayic.com/?action=download&slug=shadepro-helper\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:40:\"https://finestdevs.com/demos/wp/shadepro\";s:6:\"tested\";N;s:12:\"requires_php\";N;s:14:\"upgrade_notice\";N;s:5:\"icons\";a:0:{}s:8:\"filename\";s:35:\"shadepro-helper/shadepro-helper.php\";}s:11:\"updateClass\";s:23:\"Puc_v4p10_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(199,'woocommerce_schema_version','430','yes'),(200,'woocommerce_store_address','','yes'),(201,'woocommerce_store_address_2','','yes'),(202,'woocommerce_store_city','','yes'),(203,'woocommerce_default_country','US:CA','yes'),(204,'woocommerce_store_postcode','','yes'),(205,'woocommerce_allowed_countries','all','yes'),(206,'woocommerce_all_except_countries','','yes'),(207,'woocommerce_specific_allowed_countries','','yes'),(208,'woocommerce_ship_to_countries','','yes'),(209,'woocommerce_specific_ship_to_countries','','yes'),(210,'woocommerce_default_customer_address','base','yes'),(211,'woocommerce_calc_taxes','no','yes'),(212,'woocommerce_enable_coupons','yes','yes'),(213,'woocommerce_calc_discounts_sequentially','no','no'),(214,'woocommerce_currency','USD','yes'),(215,'woocommerce_currency_pos','left','yes'),(216,'woocommerce_price_thousand_sep',',','yes'),(217,'woocommerce_price_decimal_sep','.','yes'),(218,'woocommerce_price_num_decimals','2','yes'),(219,'woocommerce_shop_page_id','9','yes'),(220,'woocommerce_cart_redirect_after_add','no','yes'),(221,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(222,'woocommerce_placeholder_image','8','yes'),(223,'woocommerce_weight_unit','kg','yes'),(224,'woocommerce_dimension_unit','cm','yes'),(225,'woocommerce_enable_reviews','yes','yes'),(226,'woocommerce_review_rating_verification_label','yes','no'),(227,'woocommerce_review_rating_verification_required','no','no'),(228,'woocommerce_enable_review_rating','yes','yes'),(229,'woocommerce_review_rating_required','yes','no'),(230,'woocommerce_manage_stock','yes','yes'),(231,'woocommerce_hold_stock_minutes','60','no'),(232,'woocommerce_notify_low_stock','yes','no'),(233,'woocommerce_notify_no_stock','yes','no'),(234,'woocommerce_stock_email_recipient','alex@inspirable.com','no'),(235,'woocommerce_notify_low_stock_amount','2','no'),(236,'woocommerce_notify_no_stock_amount','0','yes'),(237,'woocommerce_hide_out_of_stock_items','no','yes'),(238,'woocommerce_stock_format','','yes'),(239,'woocommerce_file_download_method','force','no'),(240,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(241,'woocommerce_downloads_require_login','no','no'),(242,'woocommerce_downloads_grant_access_after_payment','yes','no'),(243,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(244,'woocommerce_prices_include_tax','no','yes'),(245,'woocommerce_tax_based_on','shipping','yes'),(246,'woocommerce_shipping_tax_class','inherit','yes'),(247,'woocommerce_tax_round_at_subtotal','no','yes'),(248,'woocommerce_tax_classes','','yes'),(249,'woocommerce_tax_display_shop','excl','yes'),(250,'woocommerce_tax_display_cart','excl','yes'),(251,'woocommerce_price_display_suffix','','yes'),(252,'woocommerce_tax_total_display','itemized','no'),(253,'woocommerce_enable_shipping_calc','yes','no'),(254,'woocommerce_shipping_cost_requires_address','no','yes'),(255,'woocommerce_ship_to_destination','billing','no'),(256,'woocommerce_shipping_debug_mode','no','yes'),(257,'woocommerce_enable_guest_checkout','yes','no'),(258,'woocommerce_enable_checkout_login_reminder','no','no'),(259,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(260,'woocommerce_enable_myaccount_registration','no','no'),(261,'woocommerce_registration_generate_username','yes','no'),(262,'woocommerce_registration_generate_password','yes','no'),(263,'woocommerce_erasure_request_removes_order_data','no','no'),(264,'woocommerce_erasure_request_removes_download_data','no','no'),(265,'woocommerce_allow_bulk_remove_personal_data','no','no'),(266,'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'),(267,'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'),(268,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(269,'woocommerce_trash_pending_orders','','no'),(270,'woocommerce_trash_failed_orders','','no'),(271,'woocommerce_trash_cancelled_orders','','no'),(272,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(273,'woocommerce_email_from_name','C and C','no'),(274,'woocommerce_email_from_address','alex@inspirable.com','no'),(275,'woocommerce_email_header_image','','no'),(276,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(277,'woocommerce_email_base_color','#96588a','no'),(179,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.4.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1631201673;s:7:\"version\";s:5:\"5.4.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(180,'mce_show_update_news','1','no'),(181,'elementor_active_kit','7','yes'),(393,'_elementor_installed_time','1631201690','yes'),(299,'woocommerce_api_enabled','no','yes'),(300,'woocommerce_allow_tracking','no','no'),(301,'woocommerce_show_marketplace_suggestions','yes','no'),(302,'woocommerce_single_image_width','600','yes'),(303,'woocommerce_thumbnail_image_width','300','yes'),(304,'woocommerce_checkout_highlight_required_fields','yes','yes'),(305,'woocommerce_demo_store','no','no'),(306,'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'),(307,'current_theme_supports_woocommerce','yes','yes'),(308,'woocommerce_queue_flush_rewrite_rules','no','yes'),(309,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(434,'product_cat_children','a:0:{}','yes'),(311,'default_product_cat','15','yes');
INSERT INTO `wp9l_options` VALUES (317,'ACFFA_icon_data','a:1:{s:6:\"5.15.4\";a:2:{s:4:\"list\";a:3:{s:3:\"fab\";a:457:{s:12:\"fab fa-500px\";s:33:\"<i class=\"fab\">&#xf26e;</i> 500px\";s:22:\"fab fa-accessible-icon\";s:43:\"<i class=\"fab\">&#xf368;</i> accessible-icon\";s:15:\"fab fa-accusoft\";s:36:\"<i class=\"fab\">&#xf369;</i> accusoft\";s:32:\"fab fa-acquisitions-incorporated\";s:53:\"<i class=\"fab\">&#xf6af;</i> acquisitions-incorporated\";s:10:\"fab fa-adn\";s:31:\"<i class=\"fab\">&#xf170;</i> adn\";s:15:\"fab fa-adversal\";s:36:\"<i class=\"fab\">&#xf36a;</i> adversal\";s:21:\"fab fa-affiliatetheme\";s:42:\"<i class=\"fab\">&#xf36b;</i> affiliatetheme\";s:13:\"fab fa-airbnb\";s:34:\"<i class=\"fab\">&#xf834;</i> airbnb\";s:14:\"fab fa-algolia\";s:35:\"<i class=\"fab\">&#xf36c;</i> algolia\";s:13:\"fab fa-alipay\";s:34:\"<i class=\"fab\">&#xf642;</i> alipay\";s:13:\"fab fa-amazon\";s:34:\"<i class=\"fab\">&#xf270;</i> amazon\";s:17:\"fab fa-amazon-pay\";s:38:\"<i class=\"fab\">&#xf42c;</i> amazon-pay\";s:13:\"fab fa-amilia\";s:34:\"<i class=\"fab\">&#xf36d;</i> amilia\";s:14:\"fab fa-android\";s:35:\"<i class=\"fab\">&#xf17b;</i> android\";s:16:\"fab fa-angellist\";s:37:\"<i class=\"fab\">&#xf209;</i> angellist\";s:20:\"fab fa-angrycreative\";s:41:\"<i class=\"fab\">&#xf36e;</i> angrycreative\";s:14:\"fab fa-angular\";s:35:\"<i class=\"fab\">&#xf420;</i> angular\";s:16:\"fab fa-app-store\";s:37:\"<i class=\"fab\">&#xf36f;</i> app-store\";s:20:\"fab fa-app-store-ios\";s:41:\"<i class=\"fab\">&#xf370;</i> app-store-ios\";s:12:\"fab fa-apper\";s:33:\"<i class=\"fab\">&#xf371;</i> apper\";s:12:\"fab fa-apple\";s:33:\"<i class=\"fab\">&#xf179;</i> apple\";s:16:\"fab fa-apple-pay\";s:37:\"<i class=\"fab\">&#xf415;</i> apple-pay\";s:17:\"fab fa-artstation\";s:38:\"<i class=\"fab\">&#xf77a;</i> artstation\";s:17:\"fab fa-asymmetrik\";s:38:\"<i class=\"fab\">&#xf372;</i> asymmetrik\";s:16:\"fab fa-atlassian\";s:37:\"<i class=\"fab\">&#xf77b;</i> atlassian\";s:14:\"fab fa-audible\";s:35:\"<i class=\"fab\">&#xf373;</i> audible\";s:19:\"fab fa-autoprefixer\";s:40:\"<i class=\"fab\">&#xf41c;</i> autoprefixer\";s:14:\"fab fa-avianex\";s:35:\"<i class=\"fab\">&#xf374;</i> avianex\";s:13:\"fab fa-aviato\";s:34:\"<i class=\"fab\">&#xf421;</i> aviato\";s:10:\"fab fa-aws\";s:31:\"<i class=\"fab\">&#xf375;</i> aws\";s:15:\"fab fa-bandcamp\";s:36:\"<i class=\"fab\">&#xf2d5;</i> bandcamp\";s:17:\"fab fa-battle-net\";s:38:\"<i class=\"fab\">&#xf835;</i> battle-net\";s:14:\"fab fa-behance\";s:35:\"<i class=\"fab\">&#xf1b4;</i> behance\";s:21:\"fab fa-behance-square\";s:42:\"<i class=\"fab\">&#xf1b5;</i> behance-square\";s:16:\"fab fa-bimobject\";s:37:\"<i class=\"fab\">&#xf378;</i> bimobject\";s:16:\"fab fa-bitbucket\";s:37:\"<i class=\"fab\">&#xf171;</i> bitbucket\";s:14:\"fab fa-bitcoin\";s:35:\"<i class=\"fab\">&#xf379;</i> bitcoin\";s:11:\"fab fa-bity\";s:32:\"<i class=\"fab\">&#xf37a;</i> bity\";s:16:\"fab fa-black-tie\";s:37:\"<i class=\"fab\">&#xf27e;</i> black-tie\";s:17:\"fab fa-blackberry\";s:38:\"<i class=\"fab\">&#xf37b;</i> blackberry\";s:14:\"fab fa-blogger\";s:35:\"<i class=\"fab\">&#xf37c;</i> blogger\";s:16:\"fab fa-blogger-b\";s:37:\"<i class=\"fab\">&#xf37d;</i> blogger-b\";s:16:\"fab fa-bluetooth\";s:37:\"<i class=\"fab\">&#xf293;</i> bluetooth\";s:18:\"fab fa-bluetooth-b\";s:39:\"<i class=\"fab\">&#xf294;</i> bluetooth-b\";s:16:\"fab fa-bootstrap\";s:37:\"<i class=\"fab\">&#xf836;</i> bootstrap\";s:10:\"fab fa-btc\";s:31:\"<i class=\"fab\">&#xf15a;</i> btc\";s:13:\"fab fa-buffer\";s:34:\"<i class=\"fab\">&#xf837;</i> buffer\";s:23:\"fab fa-buromobelexperte\";s:44:\"<i class=\"fab\">&#xf37f;</i> buromobelexperte\";s:18:\"fab fa-buy-n-large\";s:39:\"<i class=\"fab\">&#xf8a6;</i> buy-n-large\";s:17:\"fab fa-buysellads\";s:38:\"<i class=\"fab\">&#xf20d;</i> buysellads\";s:26:\"fab fa-canadian-maple-leaf\";s:47:\"<i class=\"fab\">&#xf785;</i> canadian-maple-leaf\";s:20:\"fab fa-cc-amazon-pay\";s:41:\"<i class=\"fab\">&#xf42d;</i> cc-amazon-pay\";s:14:\"fab fa-cc-amex\";s:35:\"<i class=\"fab\">&#xf1f3;</i> cc-amex\";s:19:\"fab fa-cc-apple-pay\";s:40:\"<i class=\"fab\">&#xf416;</i> cc-apple-pay\";s:21:\"fab fa-cc-diners-club\";s:42:\"<i class=\"fab\">&#xf24c;</i> cc-diners-club\";s:18:\"fab fa-cc-discover\";s:39:\"<i class=\"fab\">&#xf1f2;</i> cc-discover\";s:13:\"fab fa-cc-jcb\";s:34:\"<i class=\"fab\">&#xf24b;</i> cc-jcb\";s:20:\"fab fa-cc-mastercard\";s:41:\"<i class=\"fab\">&#xf1f1;</i> cc-mastercard\";s:16:\"fab fa-cc-paypal\";s:37:\"<i class=\"fab\">&#xf1f4;</i> cc-paypal\";s:16:\"fab fa-cc-stripe\";s:37:\"<i class=\"fab\">&#xf1f5;</i> cc-stripe\";s:14:\"fab fa-cc-visa\";s:35:\"<i class=\"fab\">&#xf1f0;</i> cc-visa\";s:17:\"fab fa-centercode\";s:38:\"<i class=\"fab\">&#xf380;</i> centercode\";s:13:\"fab fa-centos\";s:34:\"<i class=\"fab\">&#xf789;</i> centos\";s:13:\"fab fa-chrome\";s:34:\"<i class=\"fab\">&#xf268;</i> chrome\";s:17:\"fab fa-chromecast\";s:38:\"<i class=\"fab\">&#xf838;</i> chromecast\";s:17:\"fab fa-cloudflare\";s:38:\"<i class=\"fab\">&#xe07d;</i> cloudflare\";s:17:\"fab fa-cloudscale\";s:38:\"<i class=\"fab\">&#xf383;</i> cloudscale\";s:17:\"fab fa-cloudsmith\";s:38:\"<i class=\"fab\">&#xf384;</i> cloudsmith\";s:19:\"fab fa-cloudversify\";s:40:\"<i class=\"fab\">&#xf385;</i> cloudversify\";s:14:\"fab fa-codepen\";s:35:\"<i class=\"fab\">&#xf1cb;</i> codepen\";s:15:\"fab fa-codiepie\";s:36:\"<i class=\"fab\">&#xf284;</i> codiepie\";s:17:\"fab fa-confluence\";s:38:\"<i class=\"fab\">&#xf78d;</i> confluence\";s:21:\"fab fa-connectdevelop\";s:42:\"<i class=\"fab\">&#xf20e;</i> connectdevelop\";s:13:\"fab fa-contao\";s:34:\"<i class=\"fab\">&#xf26d;</i> contao\";s:20:\"fab fa-cotton-bureau\";s:41:\"<i class=\"fab\">&#xf89e;</i> cotton-bureau\";s:13:\"fab fa-cpanel\";s:34:\"<i class=\"fab\">&#xf388;</i> cpanel\";s:23:\"fab fa-creative-commons\";s:44:\"<i class=\"fab\">&#xf25e;</i> creative-commons\";s:26:\"fab fa-creative-commons-by\";s:47:\"<i class=\"fab\">&#xf4e7;</i> creative-commons-by\";s:26:\"fab fa-creative-commons-nc\";s:47:\"<i class=\"fab\">&#xf4e8;</i> creative-commons-nc\";s:29:\"fab fa-creative-commons-nc-eu\";s:50:\"<i class=\"fab\">&#xf4e9;</i> creative-commons-nc-eu\";s:29:\"fab fa-creative-commons-nc-jp\";s:50:\"<i class=\"fab\">&#xf4ea;</i> creative-commons-nc-jp\";s:26:\"fab fa-creative-commons-nd\";s:47:\"<i class=\"fab\">&#xf4eb;</i> creative-commons-nd\";s:26:\"fab fa-creative-commons-pd\";s:47:\"<i class=\"fab\">&#xf4ec;</i> creative-commons-pd\";s:30:\"fab fa-creative-commons-pd-alt\";s:51:\"<i class=\"fab\">&#xf4ed;</i> creative-commons-pd-alt\";s:29:\"fab fa-creative-commons-remix\";s:50:\"<i class=\"fab\">&#xf4ee;</i> creative-commons-remix\";s:26:\"fab fa-creative-commons-sa\";s:47:\"<i class=\"fab\">&#xf4ef;</i> creative-commons-sa\";s:32:\"fab fa-creative-commons-sampling\";s:53:\"<i class=\"fab\">&#xf4f0;</i> creative-commons-sampling\";s:37:\"fab fa-creative-commons-sampling-plus\";s:58:\"<i class=\"fab\">&#xf4f1;</i> creative-commons-sampling-plus\";s:29:\"fab fa-creative-commons-share\";s:50:\"<i class=\"fab\">&#xf4f2;</i> creative-commons-share\";s:28:\"fab fa-creative-commons-zero\";s:49:\"<i class=\"fab\">&#xf4f3;</i> creative-commons-zero\";s:20:\"fab fa-critical-role\";s:41:\"<i class=\"fab\">&#xf6c9;</i> critical-role\";s:11:\"fab fa-css3\";s:32:\"<i class=\"fab\">&#xf13c;</i> css3\";s:15:\"fab fa-css3-alt\";s:36:\"<i class=\"fab\">&#xf38b;</i> css3-alt\";s:17:\"fab fa-cuttlefish\";s:38:\"<i class=\"fab\">&#xf38c;</i> cuttlefish\";s:14:\"fab fa-d-and-d\";s:35:\"<i class=\"fab\">&#xf38d;</i> d-and-d\";s:21:\"fab fa-d-and-d-beyond\";s:42:\"<i class=\"fab\">&#xf6ca;</i> d-and-d-beyond\";s:18:\"fab fa-dailymotion\";s:39:\"<i class=\"fab\">&#xe052;</i> dailymotion\";s:15:\"fab fa-dashcube\";s:36:\"<i class=\"fab\">&#xf210;</i> dashcube\";s:13:\"fab fa-deezer\";s:34:\"<i class=\"fab\">&#xe077;</i> deezer\";s:16:\"fab fa-delicious\";s:37:\"<i class=\"fab\">&#xf1a5;</i> delicious\";s:16:\"fab fa-deploydog\";s:37:\"<i class=\"fab\">&#xf38e;</i> deploydog\";s:14:\"fab fa-deskpro\";s:35:\"<i class=\"fab\">&#xf38f;</i> deskpro\";s:10:\"fab fa-dev\";s:31:\"<i class=\"fab\">&#xf6cc;</i> dev\";s:17:\"fab fa-deviantart\";s:38:\"<i class=\"fab\">&#xf1bd;</i> deviantart\";s:10:\"fab fa-dhl\";s:31:\"<i class=\"fab\">&#xf790;</i> dhl\";s:15:\"fab fa-diaspora\";s:36:\"<i class=\"fab\">&#xf791;</i> diaspora\";s:11:\"fab fa-digg\";s:32:\"<i class=\"fab\">&#xf1a6;</i> digg\";s:20:\"fab fa-digital-ocean\";s:41:\"<i class=\"fab\">&#xf391;</i> digital-ocean\";s:14:\"fab fa-discord\";s:35:\"<i class=\"fab\">&#xf392;</i> discord\";s:16:\"fab fa-discourse\";s:37:\"<i class=\"fab\">&#xf393;</i> discourse\";s:13:\"fab fa-dochub\";s:34:\"<i class=\"fab\">&#xf394;</i> dochub\";s:13:\"fab fa-docker\";s:34:\"<i class=\"fab\">&#xf395;</i> docker\";s:20:\"fab fa-draft2digital\";s:41:\"<i class=\"fab\">&#xf396;</i> draft2digital\";s:15:\"fab fa-dribbble\";s:36:\"<i class=\"fab\">&#xf17d;</i> dribbble\";s:22:\"fab fa-dribbble-square\";s:43:\"<i class=\"fab\">&#xf397;</i> dribbble-square\";s:14:\"fab fa-dropbox\";s:35:\"<i class=\"fab\">&#xf16b;</i> dropbox\";s:13:\"fab fa-drupal\";s:34:\"<i class=\"fab\">&#xf1a9;</i> drupal\";s:13:\"fab fa-dyalog\";s:34:\"<i class=\"fab\">&#xf399;</i> dyalog\";s:17:\"fab fa-earlybirds\";s:38:\"<i class=\"fab\">&#xf39a;</i> earlybirds\";s:11:\"fab fa-ebay\";s:32:\"<i class=\"fab\">&#xf4f4;</i> ebay\";s:11:\"fab fa-edge\";s:32:\"<i class=\"fab\">&#xf282;</i> edge\";s:18:\"fab fa-edge-legacy\";s:39:\"<i class=\"fab\">&#xe078;</i> edge-legacy\";s:16:\"fab fa-elementor\";s:37:\"<i class=\"fab\">&#xf430;</i> elementor\";s:11:\"fab fa-ello\";s:32:\"<i class=\"fab\">&#xf5f1;</i> ello\";s:12:\"fab fa-ember\";s:33:\"<i class=\"fab\">&#xf423;</i> ember\";s:13:\"fab fa-empire\";s:34:\"<i class=\"fab\">&#xf1d1;</i> empire\";s:13:\"fab fa-envira\";s:34:\"<i class=\"fab\">&#xf299;</i> envira\";s:13:\"fab fa-erlang\";s:34:\"<i class=\"fab\">&#xf39d;</i> erlang\";s:15:\"fab fa-ethereum\";s:36:\"<i class=\"fab\">&#xf42e;</i> ethereum\";s:11:\"fab fa-etsy\";s:32:\"<i class=\"fab\">&#xf2d7;</i> etsy\";s:15:\"fab fa-evernote\";s:36:\"<i class=\"fab\">&#xf839;</i> evernote\";s:19:\"fab fa-expeditedssl\";s:40:\"<i class=\"fab\">&#xf23e;</i> expeditedssl\";s:15:\"fab fa-facebook\";s:36:\"<i class=\"fab\">&#xf09a;</i> facebook\";s:17:\"fab fa-facebook-f\";s:38:\"<i class=\"fab\">&#xf39e;</i> facebook-f\";s:25:\"fab fa-facebook-messenger\";s:46:\"<i class=\"fab\">&#xf39f;</i> facebook-messenger\";s:22:\"fab fa-facebook-square\";s:43:\"<i class=\"fab\">&#xf082;</i> facebook-square\";s:27:\"fab fa-fantasy-flight-games\";s:48:\"<i class=\"fab\">&#xf6dc;</i> fantasy-flight-games\";s:12:\"fab fa-fedex\";s:33:\"<i class=\"fab\">&#xf797;</i> fedex\";s:13:\"fab fa-fedora\";s:34:\"<i class=\"fab\">&#xf798;</i> fedora\";s:12:\"fab fa-figma\";s:33:\"<i class=\"fab\">&#xf799;</i> figma\";s:14:\"fab fa-firefox\";s:35:\"<i class=\"fab\">&#xf269;</i> firefox\";s:22:\"fab fa-firefox-browser\";s:43:\"<i class=\"fab\">&#xe007;</i> firefox-browser\";s:18:\"fab fa-first-order\";s:39:\"<i class=\"fab\">&#xf2b0;</i> first-order\";s:22:\"fab fa-first-order-alt\";s:43:\"<i class=\"fab\">&#xf50a;</i> first-order-alt\";s:17:\"fab fa-firstdraft\";s:38:\"<i class=\"fab\">&#xf3a1;</i> firstdraft\";s:13:\"fab fa-flickr\";s:34:\"<i class=\"fab\">&#xf16e;</i> flickr\";s:16:\"fab fa-flipboard\";s:37:\"<i class=\"fab\">&#xf44d;</i> flipboard\";s:10:\"fab fa-fly\";s:31:\"<i class=\"fab\">&#xf417;</i> fly\";s:19:\"fab fa-font-awesome\";s:40:\"<i class=\"fab\">&#xf2b4;</i> font-awesome\";s:23:\"fab fa-font-awesome-alt\";s:44:\"<i class=\"fab\">&#xf35c;</i> font-awesome-alt\";s:24:\"fab fa-font-awesome-flag\";s:45:\"<i class=\"fab\">&#xf425;</i> font-awesome-flag\";s:29:\"fab fa-font-awesome-logo-full\";s:50:\"<i class=\"fab\">&#xf4e6;</i> font-awesome-logo-full\";s:16:\"fab fa-fonticons\";s:37:\"<i class=\"fab\">&#xf280;</i> fonticons\";s:19:\"fab fa-fonticons-fi\";s:40:\"<i class=\"fab\">&#xf3a2;</i> fonticons-fi\";s:19:\"fab fa-fort-awesome\";s:40:\"<i class=\"fab\">&#xf286;</i> fort-awesome\";s:23:\"fab fa-fort-awesome-alt\";s:44:\"<i class=\"fab\">&#xf3a3;</i> fort-awesome-alt\";s:15:\"fab fa-forumbee\";s:36:\"<i class=\"fab\">&#xf211;</i> forumbee\";s:17:\"fab fa-foursquare\";s:38:\"<i class=\"fab\">&#xf180;</i> foursquare\";s:21:\"fab fa-free-code-camp\";s:42:\"<i class=\"fab\">&#xf2c5;</i> free-code-camp\";s:14:\"fab fa-freebsd\";s:35:\"<i class=\"fab\">&#xf3a4;</i> freebsd\";s:14:\"fab fa-fulcrum\";s:35:\"<i class=\"fab\">&#xf50b;</i> fulcrum\";s:24:\"fab fa-galactic-republic\";s:45:\"<i class=\"fab\">&#xf50c;</i> galactic-republic\";s:22:\"fab fa-galactic-senate\";s:43:\"<i class=\"fab\">&#xf50d;</i> galactic-senate\";s:17:\"fab fa-get-pocket\";s:38:\"<i class=\"fab\">&#xf265;</i> get-pocket\";s:9:\"fab fa-gg\";s:30:\"<i class=\"fab\">&#xf260;</i> gg\";s:16:\"fab fa-gg-circle\";s:37:\"<i class=\"fab\">&#xf261;</i> gg-circle\";s:10:\"fab fa-git\";s:31:\"<i class=\"fab\">&#xf1d3;</i> git\";s:14:\"fab fa-git-alt\";s:35:\"<i class=\"fab\">&#xf841;</i> git-alt\";s:17:\"fab fa-git-square\";s:38:\"<i class=\"fab\">&#xf1d2;</i> git-square\";s:13:\"fab fa-github\";s:34:\"<i class=\"fab\">&#xf09b;</i> github\";s:17:\"fab fa-github-alt\";s:38:\"<i class=\"fab\">&#xf113;</i> github-alt\";s:20:\"fab fa-github-square\";s:41:\"<i class=\"fab\">&#xf092;</i> github-square\";s:16:\"fab fa-gitkraken\";s:37:\"<i class=\"fab\">&#xf3a6;</i> gitkraken\";s:13:\"fab fa-gitlab\";s:34:\"<i class=\"fab\">&#xf296;</i> gitlab\";s:13:\"fab fa-gitter\";s:34:\"<i class=\"fab\">&#xf426;</i> gitter\";s:12:\"fab fa-glide\";s:33:\"<i class=\"fab\">&#xf2a5;</i> glide\";s:14:\"fab fa-glide-g\";s:35:\"<i class=\"fab\">&#xf2a6;</i> glide-g\";s:13:\"fab fa-gofore\";s:34:\"<i class=\"fab\">&#xf3a7;</i> gofore\";s:16:\"fab fa-goodreads\";s:37:\"<i class=\"fab\">&#xf3a8;</i> goodreads\";s:18:\"fab fa-goodreads-g\";s:39:\"<i class=\"fab\">&#xf3a9;</i> goodreads-g\";s:13:\"fab fa-google\";s:34:\"<i class=\"fab\">&#xf1a0;</i> google\";s:19:\"fab fa-google-drive\";s:40:\"<i class=\"fab\">&#xf3aa;</i> google-drive\";s:17:\"fab fa-google-pay\";s:38:\"<i class=\"fab\">&#xe079;</i> google-pay\";s:18:\"fab fa-google-play\";s:39:\"<i class=\"fab\">&#xf3ab;</i> google-play\";s:18:\"fab fa-google-plus\";s:39:\"<i class=\"fab\">&#xf2b3;</i> google-plus\";s:20:\"fab fa-google-plus-g\";s:41:\"<i class=\"fab\">&#xf0d5;</i> google-plus-g\";s:25:\"fab fa-google-plus-square\";s:46:\"<i class=\"fab\">&#xf0d4;</i> google-plus-square\";s:20:\"fab fa-google-wallet\";s:41:\"<i class=\"fab\">&#xf1ee;</i> google-wallet\";s:15:\"fab fa-gratipay\";s:36:\"<i class=\"fab\">&#xf184;</i> gratipay\";s:11:\"fab fa-grav\";s:32:\"<i class=\"fab\">&#xf2d6;</i> grav\";s:15:\"fab fa-gripfire\";s:36:\"<i class=\"fab\">&#xf3ac;</i> gripfire\";s:12:\"fab fa-grunt\";s:33:\"<i class=\"fab\">&#xf3ad;</i> grunt\";s:14:\"fab fa-guilded\";s:35:\"<i class=\"fab\">&#xe07e;</i> guilded\";s:11:\"fab fa-gulp\";s:32:\"<i class=\"fab\">&#xf3ae;</i> gulp\";s:18:\"fab fa-hacker-news\";s:39:\"<i class=\"fab\">&#xf1d4;</i> hacker-news\";s:25:\"fab fa-hacker-news-square\";s:46:\"<i class=\"fab\">&#xf3af;</i> hacker-news-square\";s:17:\"fab fa-hackerrank\";s:38:\"<i class=\"fab\">&#xf5f7;</i> hackerrank\";s:11:\"fab fa-hips\";s:32:\"<i class=\"fab\">&#xf452;</i> hips\";s:20:\"fab fa-hire-a-helper\";s:41:\"<i class=\"fab\">&#xf3b0;</i> hire-a-helper\";s:11:\"fab fa-hive\";s:32:\"<i class=\"fab\">&#xe07f;</i> hive\";s:12:\"fab fa-hooli\";s:33:\"<i class=\"fab\">&#xf427;</i> hooli\";s:15:\"fab fa-hornbill\";s:36:\"<i class=\"fab\">&#xf592;</i> hornbill\";s:13:\"fab fa-hotjar\";s:34:\"<i class=\"fab\">&#xf3b1;</i> hotjar\";s:12:\"fab fa-houzz\";s:33:\"<i class=\"fab\">&#xf27c;</i> houzz\";s:12:\"fab fa-html5\";s:33:\"<i class=\"fab\">&#xf13b;</i> html5\";s:14:\"fab fa-hubspot\";s:35:\"<i class=\"fab\">&#xf3b2;</i> hubspot\";s:12:\"fab fa-ideal\";s:33:\"<i class=\"fab\">&#xe013;</i> ideal\";s:11:\"fab fa-imdb\";s:32:\"<i class=\"fab\">&#xf2d8;</i> imdb\";s:15:\"fab fa-innosoft\";s:36:\"<i class=\"fab\">&#xe080;</i> innosoft\";s:16:\"fab fa-instagram\";s:37:\"<i class=\"fab\">&#xf16d;</i> instagram\";s:23:\"fab fa-instagram-square\";s:44:\"<i class=\"fab\">&#xe055;</i> instagram-square\";s:15:\"fab fa-instalod\";s:36:\"<i class=\"fab\">&#xe081;</i> instalod\";s:15:\"fab fa-intercom\";s:36:\"<i class=\"fab\">&#xf7af;</i> intercom\";s:24:\"fab fa-internet-explorer\";s:45:\"<i class=\"fab\">&#xf26b;</i> internet-explorer\";s:15:\"fab fa-invision\";s:36:\"<i class=\"fab\">&#xf7b0;</i> invision\";s:14:\"fab fa-ioxhost\";s:35:\"<i class=\"fab\">&#xf208;</i> ioxhost\";s:14:\"fab fa-itch-io\";s:35:\"<i class=\"fab\">&#xf83a;</i> itch-io\";s:13:\"fab fa-itunes\";s:34:\"<i class=\"fab\">&#xf3b4;</i> itunes\";s:18:\"fab fa-itunes-note\";s:39:\"<i class=\"fab\">&#xf3b5;</i> itunes-note\";s:11:\"fab fa-java\";s:32:\"<i class=\"fab\">&#xf4e4;</i> java\";s:17:\"fab fa-jedi-order\";s:38:\"<i class=\"fab\">&#xf50e;</i> jedi-order\";s:14:\"fab fa-jenkins\";s:35:\"<i class=\"fab\">&#xf3b6;</i> jenkins\";s:11:\"fab fa-jira\";s:32:\"<i class=\"fab\">&#xf7b1;</i> jira\";s:12:\"fab fa-joget\";s:33:\"<i class=\"fab\">&#xf3b7;</i> joget\";s:13:\"fab fa-joomla\";s:34:\"<i class=\"fab\">&#xf1aa;</i> joomla\";s:9:\"fab fa-js\";s:30:\"<i class=\"fab\">&#xf3b8;</i> js\";s:16:\"fab fa-js-square\";s:37:\"<i class=\"fab\">&#xf3b9;</i> js-square\";s:15:\"fab fa-jsfiddle\";s:36:\"<i class=\"fab\">&#xf1cc;</i> jsfiddle\";s:13:\"fab fa-kaggle\";s:34:\"<i class=\"fab\">&#xf5fa;</i> kaggle\";s:14:\"fab fa-keybase\";s:35:\"<i class=\"fab\">&#xf4f5;</i> keybase\";s:13:\"fab fa-keycdn\";s:34:\"<i class=\"fab\">&#xf3ba;</i> keycdn\";s:18:\"fab fa-kickstarter\";s:39:\"<i class=\"fab\">&#xf3bb;</i> kickstarter\";s:20:\"fab fa-kickstarter-k\";s:41:\"<i class=\"fab\">&#xf3bc;</i> kickstarter-k\";s:13:\"fab fa-korvue\";s:34:\"<i class=\"fab\">&#xf42f;</i> korvue\";s:14:\"fab fa-laravel\";s:35:\"<i class=\"fab\">&#xf3bd;</i> laravel\";s:13:\"fab fa-lastfm\";s:34:\"<i class=\"fab\">&#xf202;</i> lastfm\";s:20:\"fab fa-lastfm-square\";s:41:\"<i class=\"fab\">&#xf203;</i> lastfm-square\";s:14:\"fab fa-leanpub\";s:35:\"<i class=\"fab\">&#xf212;</i> leanpub\";s:11:\"fab fa-less\";s:32:\"<i class=\"fab\">&#xf41d;</i> less\";s:11:\"fab fa-line\";s:32:\"<i class=\"fab\">&#xf3c0;</i> line\";s:15:\"fab fa-linkedin\";s:36:\"<i class=\"fab\">&#xf08c;</i> linkedin\";s:18:\"fab fa-linkedin-in\";s:39:\"<i class=\"fab\">&#xf0e1;</i> linkedin-in\";s:13:\"fab fa-linode\";s:34:\"<i class=\"fab\">&#xf2b8;</i> linode\";s:12:\"fab fa-linux\";s:33:\"<i class=\"fab\">&#xf17c;</i> linux\";s:11:\"fab fa-lyft\";s:32:\"<i class=\"fab\">&#xf3c3;</i> lyft\";s:14:\"fab fa-magento\";s:35:\"<i class=\"fab\">&#xf3c4;</i> magento\";s:16:\"fab fa-mailchimp\";s:37:\"<i class=\"fab\">&#xf59e;</i> mailchimp\";s:18:\"fab fa-mandalorian\";s:39:\"<i class=\"fab\">&#xf50f;</i> mandalorian\";s:15:\"fab fa-markdown\";s:36:\"<i class=\"fab\">&#xf60f;</i> markdown\";s:15:\"fab fa-mastodon\";s:36:\"<i class=\"fab\">&#xf4f6;</i> mastodon\";s:13:\"fab fa-maxcdn\";s:34:\"<i class=\"fab\">&#xf136;</i> maxcdn\";s:10:\"fab fa-mdb\";s:31:\"<i class=\"fab\">&#xf8ca;</i> mdb\";s:14:\"fab fa-medapps\";s:35:\"<i class=\"fab\">&#xf3c6;</i> medapps\";s:13:\"fab fa-medium\";s:34:\"<i class=\"fab\">&#xf23a;</i> medium\";s:15:\"fab fa-medium-m\";s:36:\"<i class=\"fab\">&#xf3c7;</i> medium-m\";s:12:\"fab fa-medrt\";s:33:\"<i class=\"fab\">&#xf3c8;</i> medrt\";s:13:\"fab fa-meetup\";s:34:\"<i class=\"fab\">&#xf2e0;</i> meetup\";s:15:\"fab fa-megaport\";s:36:\"<i class=\"fab\">&#xf5a3;</i> megaport\";s:15:\"fab fa-mendeley\";s:36:\"<i class=\"fab\">&#xf7b3;</i> mendeley\";s:16:\"fab fa-microblog\";s:37:\"<i class=\"fab\">&#xe01a;</i> microblog\";s:16:\"fab fa-microsoft\";s:37:\"<i class=\"fab\">&#xf3ca;</i> microsoft\";s:10:\"fab fa-mix\";s:31:\"<i class=\"fab\">&#xf3cb;</i> mix\";s:15:\"fab fa-mixcloud\";s:36:\"<i class=\"fab\">&#xf289;</i> mixcloud\";s:12:\"fab fa-mixer\";s:33:\"<i class=\"fab\">&#xe056;</i> mixer\";s:13:\"fab fa-mizuni\";s:34:\"<i class=\"fab\">&#xf3cc;</i> mizuni\";s:11:\"fab fa-modx\";s:32:\"<i class=\"fab\">&#xf285;</i> modx\";s:13:\"fab fa-monero\";s:34:\"<i class=\"fab\">&#xf3d0;</i> monero\";s:14:\"fab fa-napster\";s:35:\"<i class=\"fab\">&#xf3d2;</i> napster\";s:11:\"fab fa-neos\";s:32:\"<i class=\"fab\">&#xf612;</i> neos\";s:13:\"fab fa-nimblr\";s:34:\"<i class=\"fab\">&#xf5a8;</i> nimblr\";s:11:\"fab fa-node\";s:32:\"<i class=\"fab\">&#xf419;</i> node\";s:14:\"fab fa-node-js\";s:35:\"<i class=\"fab\">&#xf3d3;</i> node-js\";s:10:\"fab fa-npm\";s:31:\"<i class=\"fab\">&#xf3d4;</i> npm\";s:10:\"fab fa-ns8\";s:31:\"<i class=\"fab\">&#xf3d5;</i> ns8\";s:18:\"fab fa-nutritionix\";s:39:\"<i class=\"fab\">&#xf3d6;</i> nutritionix\";s:21:\"fab fa-octopus-deploy\";s:42:\"<i class=\"fab\">&#xe082;</i> octopus-deploy\";s:20:\"fab fa-odnoklassniki\";s:41:\"<i class=\"fab\">&#xf263;</i> odnoklassniki\";s:27:\"fab fa-odnoklassniki-square\";s:48:\"<i class=\"fab\">&#xf264;</i> odnoklassniki-square\";s:19:\"fab fa-old-republic\";s:40:\"<i class=\"fab\">&#xf510;</i> old-republic\";s:15:\"fab fa-opencart\";s:36:\"<i class=\"fab\">&#xf23d;</i> opencart\";s:13:\"fab fa-openid\";s:34:\"<i class=\"fab\">&#xf19b;</i> openid\";s:12:\"fab fa-opera\";s:33:\"<i class=\"fab\">&#xf26a;</i> opera\";s:20:\"fab fa-optin-monster\";s:41:\"<i class=\"fab\">&#xf23c;</i> optin-monster\";s:12:\"fab fa-orcid\";s:33:\"<i class=\"fab\">&#xf8d2;</i> orcid\";s:10:\"fab fa-osi\";s:31:\"<i class=\"fab\">&#xf41a;</i> osi\";s:12:\"fab fa-page4\";s:33:\"<i class=\"fab\">&#xf3d7;</i> page4\";s:16:\"fab fa-pagelines\";s:37:\"<i class=\"fab\">&#xf18c;</i> pagelines\";s:13:\"fab fa-palfed\";s:34:\"<i class=\"fab\">&#xf3d8;</i> palfed\";s:14:\"fab fa-patreon\";s:35:\"<i class=\"fab\">&#xf3d9;</i> patreon\";s:13:\"fab fa-paypal\";s:34:\"<i class=\"fab\">&#xf1ed;</i> paypal\";s:19:\"fab fa-penny-arcade\";s:40:\"<i class=\"fab\">&#xf704;</i> penny-arcade\";s:14:\"fab fa-perbyte\";s:35:\"<i class=\"fab\">&#xe083;</i> perbyte\";s:16:\"fab fa-periscope\";s:37:\"<i class=\"fab\">&#xf3da;</i> periscope\";s:18:\"fab fa-phabricator\";s:39:\"<i class=\"fab\">&#xf3db;</i> phabricator\";s:24:\"fab fa-phoenix-framework\";s:45:\"<i class=\"fab\">&#xf3dc;</i> phoenix-framework\";s:23:\"fab fa-phoenix-squadron\";s:44:\"<i class=\"fab\">&#xf511;</i> phoenix-squadron\";s:10:\"fab fa-php\";s:31:\"<i class=\"fab\">&#xf457;</i> php\";s:17:\"fab fa-pied-piper\";s:38:\"<i class=\"fab\">&#xf2ae;</i> pied-piper\";s:21:\"fab fa-pied-piper-alt\";s:42:\"<i class=\"fab\">&#xf1a8;</i> pied-piper-alt\";s:21:\"fab fa-pied-piper-hat\";s:42:\"<i class=\"fab\">&#xf4e5;</i> pied-piper-hat\";s:20:\"fab fa-pied-piper-pp\";s:41:\"<i class=\"fab\">&#xf1a7;</i> pied-piper-pp\";s:24:\"fab fa-pied-piper-square\";s:45:\"<i class=\"fab\">&#xe01e;</i> pied-piper-square\";s:16:\"fab fa-pinterest\";s:37:\"<i class=\"fab\">&#xf0d2;</i> pinterest\";s:18:\"fab fa-pinterest-p\";s:39:\"<i class=\"fab\">&#xf231;</i> pinterest-p\";s:23:\"fab fa-pinterest-square\";s:44:\"<i class=\"fab\">&#xf0d3;</i> pinterest-square\";s:18:\"fab fa-playstation\";s:39:\"<i class=\"fab\">&#xf3df;</i> playstation\";s:19:\"fab fa-product-hunt\";s:40:\"<i class=\"fab\">&#xf288;</i> product-hunt\";s:13:\"fab fa-pushed\";s:34:\"<i class=\"fab\">&#xf3e1;</i> pushed\";s:13:\"fab fa-python\";s:34:\"<i class=\"fab\">&#xf3e2;</i> python\";s:9:\"fab fa-qq\";s:30:\"<i class=\"fab\">&#xf1d6;</i> qq\";s:16:\"fab fa-quinscape\";s:37:\"<i class=\"fab\">&#xf459;</i> quinscape\";s:12:\"fab fa-quora\";s:33:\"<i class=\"fab\">&#xf2c4;</i> quora\";s:16:\"fab fa-r-project\";s:37:\"<i class=\"fab\">&#xf4f7;</i> r-project\";s:19:\"fab fa-raspberry-pi\";s:40:\"<i class=\"fab\">&#xf7bb;</i> raspberry-pi\";s:14:\"fab fa-ravelry\";s:35:\"<i class=\"fab\">&#xf2d9;</i> ravelry\";s:12:\"fab fa-react\";s:33:\"<i class=\"fab\">&#xf41b;</i> react\";s:18:\"fab fa-reacteurope\";s:39:\"<i class=\"fab\">&#xf75d;</i> reacteurope\";s:13:\"fab fa-readme\";s:34:\"<i class=\"fab\">&#xf4d5;</i> readme\";s:12:\"fab fa-rebel\";s:33:\"<i class=\"fab\">&#xf1d0;</i> rebel\";s:16:\"fab fa-red-river\";s:37:\"<i class=\"fab\">&#xf3e3;</i> red-river\";s:13:\"fab fa-reddit\";s:34:\"<i class=\"fab\">&#xf1a1;</i> reddit\";s:19:\"fab fa-reddit-alien\";s:40:\"<i class=\"fab\">&#xf281;</i> reddit-alien\";s:20:\"fab fa-reddit-square\";s:41:\"<i class=\"fab\">&#xf1a2;</i> reddit-square\";s:13:\"fab fa-redhat\";s:34:\"<i class=\"fab\">&#xf7bc;</i> redhat\";s:13:\"fab fa-renren\";s:34:\"<i class=\"fab\">&#xf18b;</i> renren\";s:13:\"fab fa-replyd\";s:34:\"<i class=\"fab\">&#xf3e6;</i> replyd\";s:19:\"fab fa-researchgate\";s:40:\"<i class=\"fab\">&#xf4f8;</i> researchgate\";s:16:\"fab fa-resolving\";s:37:\"<i class=\"fab\">&#xf3e7;</i> resolving\";s:10:\"fab fa-rev\";s:31:\"<i class=\"fab\">&#xf5b2;</i> rev\";s:17:\"fab fa-rocketchat\";s:38:\"<i class=\"fab\">&#xf3e8;</i> rocketchat\";s:14:\"fab fa-rockrms\";s:35:\"<i class=\"fab\">&#xf3e9;</i> rockrms\";s:11:\"fab fa-rust\";s:32:\"<i class=\"fab\">&#xe07a;</i> rust\";s:13:\"fab fa-safari\";s:34:\"<i class=\"fab\">&#xf267;</i> safari\";s:17:\"fab fa-salesforce\";s:38:\"<i class=\"fab\">&#xf83b;</i> salesforce\";s:11:\"fab fa-sass\";s:32:\"<i class=\"fab\">&#xf41e;</i> sass\";s:13:\"fab fa-schlix\";s:34:\"<i class=\"fab\">&#xf3ea;</i> schlix\";s:13:\"fab fa-scribd\";s:34:\"<i class=\"fab\">&#xf28a;</i> scribd\";s:18:\"fab fa-searchengin\";s:39:\"<i class=\"fab\">&#xf3eb;</i> searchengin\";s:15:\"fab fa-sellcast\";s:36:\"<i class=\"fab\">&#xf2da;</i> sellcast\";s:13:\"fab fa-sellsy\";s:34:\"<i class=\"fab\">&#xf213;</i> sellsy\";s:19:\"fab fa-servicestack\";s:40:\"<i class=\"fab\">&#xf3ec;</i> servicestack\";s:19:\"fab fa-shirtsinbulk\";s:40:\"<i class=\"fab\">&#xf214;</i> shirtsinbulk\";s:14:\"fab fa-shopify\";s:35:\"<i class=\"fab\">&#xe057;</i> shopify\";s:15:\"fab fa-shopware\";s:36:\"<i class=\"fab\">&#xf5b5;</i> shopware\";s:18:\"fab fa-simplybuilt\";s:39:\"<i class=\"fab\">&#xf215;</i> simplybuilt\";s:14:\"fab fa-sistrix\";s:35:\"<i class=\"fab\">&#xf3ee;</i> sistrix\";s:11:\"fab fa-sith\";s:32:\"<i class=\"fab\">&#xf512;</i> sith\";s:13:\"fab fa-sketch\";s:34:\"<i class=\"fab\">&#xf7c6;</i> sketch\";s:15:\"fab fa-skyatlas\";s:36:\"<i class=\"fab\">&#xf216;</i> skyatlas\";s:12:\"fab fa-skype\";s:33:\"<i class=\"fab\">&#xf17e;</i> skype\";s:12:\"fab fa-slack\";s:33:\"<i class=\"fab\">&#xf198;</i> slack\";s:17:\"fab fa-slack-hash\";s:38:\"<i class=\"fab\">&#xf3ef;</i> slack-hash\";s:17:\"fab fa-slideshare\";s:38:\"<i class=\"fab\">&#xf1e7;</i> slideshare\";s:15:\"fab fa-snapchat\";s:36:\"<i class=\"fab\">&#xf2ab;</i> snapchat\";s:21:\"fab fa-snapchat-ghost\";s:42:\"<i class=\"fab\">&#xf2ac;</i> snapchat-ghost\";s:22:\"fab fa-snapchat-square\";s:43:\"<i class=\"fab\">&#xf2ad;</i> snapchat-square\";s:17:\"fab fa-soundcloud\";s:38:\"<i class=\"fab\">&#xf1be;</i> soundcloud\";s:17:\"fab fa-sourcetree\";s:38:\"<i class=\"fab\">&#xf7d3;</i> sourcetree\";s:14:\"fab fa-speakap\";s:35:\"<i class=\"fab\">&#xf3f3;</i> speakap\";s:19:\"fab fa-speaker-deck\";s:40:\"<i class=\"fab\">&#xf83c;</i> speaker-deck\";s:14:\"fab fa-spotify\";s:35:\"<i class=\"fab\">&#xf1bc;</i> spotify\";s:18:\"fab fa-squarespace\";s:39:\"<i class=\"fab\">&#xf5be;</i> squarespace\";s:21:\"fab fa-stack-exchange\";s:42:\"<i class=\"fab\">&#xf18d;</i> stack-exchange\";s:21:\"fab fa-stack-overflow\";s:42:\"<i class=\"fab\">&#xf16c;</i> stack-overflow\";s:16:\"fab fa-stackpath\";s:37:\"<i class=\"fab\">&#xf842;</i> stackpath\";s:17:\"fab fa-staylinked\";s:38:\"<i class=\"fab\">&#xf3f5;</i> staylinked\";s:12:\"fab fa-steam\";s:33:\"<i class=\"fab\">&#xf1b6;</i> steam\";s:19:\"fab fa-steam-square\";s:40:\"<i class=\"fab\">&#xf1b7;</i> steam-square\";s:19:\"fab fa-steam-symbol\";s:40:\"<i class=\"fab\">&#xf3f6;</i> steam-symbol\";s:19:\"fab fa-sticker-mule\";s:40:\"<i class=\"fab\">&#xf3f7;</i> sticker-mule\";s:13:\"fab fa-strava\";s:34:\"<i class=\"fab\">&#xf428;</i> strava\";s:13:\"fab fa-stripe\";s:34:\"<i class=\"fab\">&#xf429;</i> stripe\";s:15:\"fab fa-stripe-s\";s:36:\"<i class=\"fab\">&#xf42a;</i> stripe-s\";s:19:\"fab fa-studiovinari\";s:40:\"<i class=\"fab\">&#xf3f8;</i> studiovinari\";s:18:\"fab fa-stumbleupon\";s:39:\"<i class=\"fab\">&#xf1a4;</i> stumbleupon\";s:25:\"fab fa-stumbleupon-circle\";s:46:\"<i class=\"fab\">&#xf1a3;</i> stumbleupon-circle\";s:18:\"fab fa-superpowers\";s:39:\"<i class=\"fab\">&#xf2dd;</i> superpowers\";s:13:\"fab fa-supple\";s:34:\"<i class=\"fab\">&#xf3f9;</i> supple\";s:11:\"fab fa-suse\";s:32:\"<i class=\"fab\">&#xf7d6;</i> suse\";s:12:\"fab fa-swift\";s:33:\"<i class=\"fab\">&#xf8e1;</i> swift\";s:14:\"fab fa-symfony\";s:35:\"<i class=\"fab\">&#xf83d;</i> symfony\";s:16:\"fab fa-teamspeak\";s:37:\"<i class=\"fab\">&#xf4f9;</i> teamspeak\";s:15:\"fab fa-telegram\";s:36:\"<i class=\"fab\">&#xf2c6;</i> telegram\";s:21:\"fab fa-telegram-plane\";s:42:\"<i class=\"fab\">&#xf3fe;</i> telegram-plane\";s:20:\"fab fa-tencent-weibo\";s:41:\"<i class=\"fab\">&#xf1d5;</i> tencent-weibo\";s:19:\"fab fa-the-red-yeti\";s:40:\"<i class=\"fab\">&#xf69d;</i> the-red-yeti\";s:14:\"fab fa-themeco\";s:35:\"<i class=\"fab\">&#xf5c6;</i> themeco\";s:16:\"fab fa-themeisle\";s:37:\"<i class=\"fab\">&#xf2b2;</i> themeisle\";s:18:\"fab fa-think-peaks\";s:39:\"<i class=\"fab\">&#xf731;</i> think-peaks\";s:13:\"fab fa-tiktok\";s:34:\"<i class=\"fab\">&#xe07b;</i> tiktok\";s:23:\"fab fa-trade-federation\";s:44:\"<i class=\"fab\">&#xf513;</i> trade-federation\";s:13:\"fab fa-trello\";s:34:\"<i class=\"fab\">&#xf181;</i> trello\";s:13:\"fab fa-tumblr\";s:34:\"<i class=\"fab\">&#xf173;</i> tumblr\";s:20:\"fab fa-tumblr-square\";s:41:\"<i class=\"fab\">&#xf174;</i> tumblr-square\";s:13:\"fab fa-twitch\";s:34:\"<i class=\"fab\">&#xf1e8;</i> twitch\";s:14:\"fab fa-twitter\";s:35:\"<i class=\"fab\">&#xf099;</i> twitter\";s:21:\"fab fa-twitter-square\";s:42:\"<i class=\"fab\">&#xf081;</i> twitter-square\";s:12:\"fab fa-typo3\";s:33:\"<i class=\"fab\">&#xf42b;</i> typo3\";s:11:\"fab fa-uber\";s:32:\"<i class=\"fab\">&#xf402;</i> uber\";s:13:\"fab fa-ubuntu\";s:34:\"<i class=\"fab\">&#xf7df;</i> ubuntu\";s:12:\"fab fa-uikit\";s:33:\"<i class=\"fab\">&#xf403;</i> uikit\";s:14:\"fab fa-umbraco\";s:35:\"<i class=\"fab\">&#xf8e8;</i> umbraco\";s:16:\"fab fa-uncharted\";s:37:\"<i class=\"fab\">&#xe084;</i> uncharted\";s:18:\"fab fa-uniregistry\";s:39:\"<i class=\"fab\">&#xf404;</i> uniregistry\";s:12:\"fab fa-unity\";s:33:\"<i class=\"fab\">&#xe049;</i> unity\";s:15:\"fab fa-unsplash\";s:36:\"<i class=\"fab\">&#xe07c;</i> unsplash\";s:14:\"fab fa-untappd\";s:35:\"<i class=\"fab\">&#xf405;</i> untappd\";s:10:\"fab fa-ups\";s:31:\"<i class=\"fab\">&#xf7e0;</i> ups\";s:10:\"fab fa-usb\";s:31:\"<i class=\"fab\">&#xf287;</i> usb\";s:11:\"fab fa-usps\";s:32:\"<i class=\"fab\">&#xf7e1;</i> usps\";s:15:\"fab fa-ussunnah\";s:36:\"<i class=\"fab\">&#xf407;</i> ussunnah\";s:13:\"fab fa-vaadin\";s:34:\"<i class=\"fab\">&#xf408;</i> vaadin\";s:14:\"fab fa-viacoin\";s:35:\"<i class=\"fab\">&#xf237;</i> viacoin\";s:13:\"fab fa-viadeo\";s:34:\"<i class=\"fab\">&#xf2a9;</i> viadeo\";s:20:\"fab fa-viadeo-square\";s:41:\"<i class=\"fab\">&#xf2aa;</i> viadeo-square\";s:12:\"fab fa-viber\";s:33:\"<i class=\"fab\">&#xf409;</i> viber\";s:12:\"fab fa-vimeo\";s:33:\"<i class=\"fab\">&#xf40a;</i> vimeo\";s:19:\"fab fa-vimeo-square\";s:40:\"<i class=\"fab\">&#xf194;</i> vimeo-square\";s:14:\"fab fa-vimeo-v\";s:35:\"<i class=\"fab\">&#xf27d;</i> vimeo-v\";s:11:\"fab fa-vine\";s:32:\"<i class=\"fab\">&#xf1ca;</i> vine\";s:9:\"fab fa-vk\";s:30:\"<i class=\"fab\">&#xf189;</i> vk\";s:10:\"fab fa-vnv\";s:31:\"<i class=\"fab\">&#xf40b;</i> vnv\";s:12:\"fab fa-vuejs\";s:33:\"<i class=\"fab\">&#xf41f;</i> vuejs\";s:26:\"fab fa-watchman-monitoring\";s:47:\"<i class=\"fab\">&#xe087;</i> watchman-monitoring\";s:11:\"fab fa-waze\";s:32:\"<i class=\"fab\">&#xf83f;</i> waze\";s:13:\"fab fa-weebly\";s:34:\"<i class=\"fab\">&#xf5cc;</i> weebly\";s:12:\"fab fa-weibo\";s:33:\"<i class=\"fab\">&#xf18a;</i> weibo\";s:13:\"fab fa-weixin\";s:34:\"<i class=\"fab\">&#xf1d7;</i> weixin\";s:15:\"fab fa-whatsapp\";s:36:\"<i class=\"fab\">&#xf232;</i> whatsapp\";s:22:\"fab fa-whatsapp-square\";s:43:\"<i class=\"fab\">&#xf40c;</i> whatsapp-square\";s:12:\"fab fa-whmcs\";s:33:\"<i class=\"fab\">&#xf40d;</i> whmcs\";s:18:\"fab fa-wikipedia-w\";s:39:\"<i class=\"fab\">&#xf266;</i> wikipedia-w\";s:14:\"fab fa-windows\";s:35:\"<i class=\"fab\">&#xf17a;</i> windows\";s:10:\"fab fa-wix\";s:31:\"<i class=\"fab\">&#xf5cf;</i> wix\";s:27:\"fab fa-wizards-of-the-coast\";s:48:\"<i class=\"fab\">&#xf730;</i> wizards-of-the-coast\";s:11:\"fab fa-wodu\";s:32:\"<i class=\"fab\">&#xe088;</i> wodu\";s:26:\"fab fa-wolf-pack-battalion\";s:47:\"<i class=\"fab\">&#xf514;</i> wolf-pack-battalion\";s:16:\"fab fa-wordpress\";s:37:\"<i class=\"fab\">&#xf19a;</i> wordpress\";s:23:\"fab fa-wordpress-simple\";s:44:\"<i class=\"fab\">&#xf411;</i> wordpress-simple\";s:17:\"fab fa-wpbeginner\";s:38:\"<i class=\"fab\">&#xf297;</i> wpbeginner\";s:17:\"fab fa-wpexplorer\";s:38:\"<i class=\"fab\">&#xf2de;</i> wpexplorer\";s:14:\"fab fa-wpforms\";s:35:\"<i class=\"fab\">&#xf298;</i> wpforms\";s:14:\"fab fa-wpressr\";s:35:\"<i class=\"fab\">&#xf3e4;</i> wpressr\";s:11:\"fab fa-xbox\";s:32:\"<i class=\"fab\">&#xf412;</i> xbox\";s:11:\"fab fa-xing\";s:32:\"<i class=\"fab\">&#xf168;</i> xing\";s:18:\"fab fa-xing-square\";s:39:\"<i class=\"fab\">&#xf169;</i> xing-square\";s:19:\"fab fa-y-combinator\";s:40:\"<i class=\"fab\">&#xf23b;</i> y-combinator\";s:12:\"fab fa-yahoo\";s:33:\"<i class=\"fab\">&#xf19e;</i> yahoo\";s:13:\"fab fa-yammer\";s:34:\"<i class=\"fab\">&#xf840;</i> yammer\";s:13:\"fab fa-yandex\";s:34:\"<i class=\"fab\">&#xf413;</i> yandex\";s:27:\"fab fa-yandex-international\";s:48:\"<i class=\"fab\">&#xf414;</i> yandex-international\";s:11:\"fab fa-yarn\";s:32:\"<i class=\"fab\">&#xf7e3;</i> yarn\";s:11:\"fab fa-yelp\";s:32:\"<i class=\"fab\">&#xf1e9;</i> yelp\";s:12:\"fab fa-yoast\";s:33:\"<i class=\"fab\">&#xf2b1;</i> yoast\";s:14:\"fab fa-youtube\";s:35:\"<i class=\"fab\">&#xf167;</i> youtube\";s:21:\"fab fa-youtube-square\";s:42:\"<i class=\"fab\">&#xf431;</i> youtube-square\";s:12:\"fab fa-zhihu\";s:33:\"<i class=\"fab\">&#xf63f;</i> zhihu\";}s:3:\"fas\";a:1002:{s:9:\"fas fa-ad\";s:30:\"<i class=\"fas\">&#xf641;</i> ad\";s:19:\"fas fa-address-book\";s:40:\"<i class=\"fas\">&#xf2b9;</i> address-book\";s:19:\"fas fa-address-card\";s:40:\"<i class=\"fas\">&#xf2bb;</i> address-card\";s:13:\"fas fa-adjust\";s:34:\"<i class=\"fas\">&#xf042;</i> adjust\";s:20:\"fas fa-air-freshener\";s:41:\"<i class=\"fas\">&#xf5d0;</i> air-freshener\";s:19:\"fas fa-align-center\";s:40:\"<i class=\"fas\">&#xf037;</i> align-center\";s:20:\"fas fa-align-justify\";s:41:\"<i class=\"fas\">&#xf039;</i> align-justify\";s:17:\"fas fa-align-left\";s:38:\"<i class=\"fas\">&#xf036;</i> align-left\";s:18:\"fas fa-align-right\";s:39:\"<i class=\"fas\">&#xf038;</i> align-right\";s:16:\"fas fa-allergies\";s:37:\"<i class=\"fas\">&#xf461;</i> allergies\";s:16:\"fas fa-ambulance\";s:37:\"<i class=\"fas\">&#xf0f9;</i> ambulance\";s:42:\"fas fa-american-sign-language-interpreting\";s:63:\"<i class=\"fas\">&#xf2a3;</i> american-sign-language-interpreting\";s:13:\"fas fa-anchor\";s:34:\"<i class=\"fas\">&#xf13d;</i> anchor\";s:24:\"fas fa-angle-double-down\";s:45:\"<i class=\"fas\">&#xf103;</i> angle-double-down\";s:24:\"fas fa-angle-double-left\";s:45:\"<i class=\"fas\">&#xf100;</i> angle-double-left\";s:25:\"fas fa-angle-double-right\";s:46:\"<i class=\"fas\">&#xf101;</i> angle-double-right\";s:22:\"fas fa-angle-double-up\";s:43:\"<i class=\"fas\">&#xf102;</i> angle-double-up\";s:17:\"fas fa-angle-down\";s:38:\"<i class=\"fas\">&#xf107;</i> angle-down\";s:17:\"fas fa-angle-left\";s:38:\"<i class=\"fas\">&#xf104;</i> angle-left\";s:18:\"fas fa-angle-right\";s:39:\"<i class=\"fas\">&#xf105;</i> angle-right\";s:15:\"fas fa-angle-up\";s:36:\"<i class=\"fas\">&#xf106;</i> angle-up\";s:12:\"fas fa-angry\";s:33:\"<i class=\"fas\">&#xf556;</i> angry\";s:11:\"fas fa-ankh\";s:32:\"<i class=\"fas\">&#xf644;</i> ankh\";s:16:\"fas fa-apple-alt\";s:37:\"<i class=\"fas\">&#xf5d1;</i> apple-alt\";s:14:\"fas fa-archive\";s:35:\"<i class=\"fas\">&#xf187;</i> archive\";s:14:\"fas fa-archway\";s:35:\"<i class=\"fas\">&#xf557;</i> archway\";s:28:\"fas fa-arrow-alt-circle-down\";s:49:\"<i class=\"fas\">&#xf358;</i> arrow-alt-circle-down\";s:28:\"fas fa-arrow-alt-circle-left\";s:49:\"<i class=\"fas\">&#xf359;</i> arrow-alt-circle-left\";s:29:\"fas fa-arrow-alt-circle-right\";s:50:\"<i class=\"fas\">&#xf35a;</i> arrow-alt-circle-right\";s:26:\"fas fa-arrow-alt-circle-up\";s:47:\"<i class=\"fas\">&#xf35b;</i> arrow-alt-circle-up\";s:24:\"fas fa-arrow-circle-down\";s:45:\"<i class=\"fas\">&#xf0ab;</i> arrow-circle-down\";s:24:\"fas fa-arrow-circle-left\";s:45:\"<i class=\"fas\">&#xf0a8;</i> arrow-circle-left\";s:25:\"fas fa-arrow-circle-right\";s:46:\"<i class=\"fas\">&#xf0a9;</i> arrow-circle-right\";s:22:\"fas fa-arrow-circle-up\";s:43:\"<i class=\"fas\">&#xf0aa;</i> arrow-circle-up\";s:17:\"fas fa-arrow-down\";s:38:\"<i class=\"fas\">&#xf063;</i> arrow-down\";s:17:\"fas fa-arrow-left\";s:38:\"<i class=\"fas\">&#xf060;</i> arrow-left\";s:18:\"fas fa-arrow-right\";s:39:\"<i class=\"fas\">&#xf061;</i> arrow-right\";s:15:\"fas fa-arrow-up\";s:36:\"<i class=\"fas\">&#xf062;</i> arrow-up\";s:17:\"fas fa-arrows-alt\";s:38:\"<i class=\"fas\">&#xf0b2;</i> arrows-alt\";s:19:\"fas fa-arrows-alt-h\";s:40:\"<i class=\"fas\">&#xf337;</i> arrows-alt-h\";s:19:\"fas fa-arrows-alt-v\";s:40:\"<i class=\"fas\">&#xf338;</i> arrows-alt-v\";s:34:\"fas fa-assistive-listening-systems\";s:55:\"<i class=\"fas\">&#xf2a2;</i> assistive-listening-systems\";s:15:\"fas fa-asterisk\";s:36:\"<i class=\"fas\">&#xf069;</i> asterisk\";s:9:\"fas fa-at\";s:30:\"<i class=\"fas\">&#xf1fa;</i> at\";s:12:\"fas fa-atlas\";s:33:\"<i class=\"fas\">&#xf558;</i> atlas\";s:11:\"fas fa-atom\";s:32:\"<i class=\"fas\">&#xf5d2;</i> atom\";s:24:\"fas fa-audio-description\";s:45:\"<i class=\"fas\">&#xf29e;</i> audio-description\";s:12:\"fas fa-award\";s:33:\"<i class=\"fas\">&#xf559;</i> award\";s:11:\"fas fa-baby\";s:32:\"<i class=\"fas\">&#xf77c;</i> baby\";s:20:\"fas fa-baby-carriage\";s:41:\"<i class=\"fas\">&#xf77d;</i> baby-carriage\";s:16:\"fas fa-backspace\";s:37:\"<i class=\"fas\">&#xf55a;</i> backspace\";s:15:\"fas fa-backward\";s:36:\"<i class=\"fas\">&#xf04a;</i> backward\";s:12:\"fas fa-bacon\";s:33:\"<i class=\"fas\">&#xf7e5;</i> bacon\";s:15:\"fas fa-bacteria\";s:36:\"<i class=\"fas\">&#xe059;</i> bacteria\";s:16:\"fas fa-bacterium\";s:37:\"<i class=\"fas\">&#xe05a;</i> bacterium\";s:12:\"fas fa-bahai\";s:33:\"<i class=\"fas\">&#xf666;</i> bahai\";s:20:\"fas fa-balance-scale\";s:41:\"<i class=\"fas\">&#xf24e;</i> balance-scale\";s:25:\"fas fa-balance-scale-left\";s:46:\"<i class=\"fas\">&#xf515;</i> balance-scale-left\";s:26:\"fas fa-balance-scale-right\";s:47:\"<i class=\"fas\">&#xf516;</i> balance-scale-right\";s:10:\"fas fa-ban\";s:31:\"<i class=\"fas\">&#xf05e;</i> ban\";s:15:\"fas fa-band-aid\";s:36:\"<i class=\"fas\">&#xf462;</i> band-aid\";s:14:\"fas fa-barcode\";s:35:\"<i class=\"fas\">&#xf02a;</i> barcode\";s:11:\"fas fa-bars\";s:32:\"<i class=\"fas\">&#xf0c9;</i> bars\";s:20:\"fas fa-baseball-ball\";s:41:\"<i class=\"fas\">&#xf433;</i> baseball-ball\";s:22:\"fas fa-basketball-ball\";s:43:\"<i class=\"fas\">&#xf434;</i> basketball-ball\";s:11:\"fas fa-bath\";s:32:\"<i class=\"fas\">&#xf2cd;</i> bath\";s:20:\"fas fa-battery-empty\";s:41:\"<i class=\"fas\">&#xf244;</i> battery-empty\";s:19:\"fas fa-battery-full\";s:40:\"<i class=\"fas\">&#xf240;</i> battery-full\";s:19:\"fas fa-battery-half\";s:40:\"<i class=\"fas\">&#xf242;</i> battery-half\";s:22:\"fas fa-battery-quarter\";s:43:\"<i class=\"fas\">&#xf243;</i> battery-quarter\";s:29:\"fas fa-battery-three-quarters\";s:50:\"<i class=\"fas\">&#xf241;</i> battery-three-quarters\";s:10:\"fas fa-bed\";s:31:\"<i class=\"fas\">&#xf236;</i> bed\";s:11:\"fas fa-beer\";s:32:\"<i class=\"fas\">&#xf0fc;</i> beer\";s:11:\"fas fa-bell\";s:32:\"<i class=\"fas\">&#xf0f3;</i> bell\";s:17:\"fas fa-bell-slash\";s:38:\"<i class=\"fas\">&#xf1f6;</i> bell-slash\";s:19:\"fas fa-bezier-curve\";s:40:\"<i class=\"fas\">&#xf55b;</i> bezier-curve\";s:12:\"fas fa-bible\";s:33:\"<i class=\"fas\">&#xf647;</i> bible\";s:14:\"fas fa-bicycle\";s:35:\"<i class=\"fas\">&#xf206;</i> bicycle\";s:13:\"fas fa-biking\";s:34:\"<i class=\"fas\">&#xf84a;</i> biking\";s:17:\"fas fa-binoculars\";s:38:\"<i class=\"fas\">&#xf1e5;</i> binoculars\";s:16:\"fas fa-biohazard\";s:37:\"<i class=\"fas\">&#xf780;</i> biohazard\";s:20:\"fas fa-birthday-cake\";s:41:\"<i class=\"fas\">&#xf1fd;</i> birthday-cake\";s:14:\"fas fa-blender\";s:35:\"<i class=\"fas\">&#xf517;</i> blender\";s:20:\"fas fa-blender-phone\";s:41:\"<i class=\"fas\">&#xf6b6;</i> blender-phone\";s:12:\"fas fa-blind\";s:33:\"<i class=\"fas\">&#xf29d;</i> blind\";s:11:\"fas fa-blog\";s:32:\"<i class=\"fas\">&#xf781;</i> blog\";s:11:\"fas fa-bold\";s:32:\"<i class=\"fas\">&#xf032;</i> bold\";s:11:\"fas fa-bolt\";s:32:\"<i class=\"fas\">&#xf0e7;</i> bolt\";s:11:\"fas fa-bomb\";s:32:\"<i class=\"fas\">&#xf1e2;</i> bomb\";s:11:\"fas fa-bone\";s:32:\"<i class=\"fas\">&#xf5d7;</i> bone\";s:11:\"fas fa-bong\";s:32:\"<i class=\"fas\">&#xf55c;</i> bong\";s:11:\"fas fa-book\";s:32:\"<i class=\"fas\">&#xf02d;</i> book\";s:16:\"fas fa-book-dead\";s:37:\"<i class=\"fas\">&#xf6b7;</i> book-dead\";s:19:\"fas fa-book-medical\";s:40:\"<i class=\"fas\">&#xf7e6;</i> book-medical\";s:16:\"fas fa-book-open\";s:37:\"<i class=\"fas\">&#xf518;</i> book-open\";s:18:\"fas fa-book-reader\";s:39:\"<i class=\"fas\">&#xf5da;</i> book-reader\";s:15:\"fas fa-bookmark\";s:36:\"<i class=\"fas\">&#xf02e;</i> bookmark\";s:17:\"fas fa-border-all\";s:38:\"<i class=\"fas\">&#xf84c;</i> border-all\";s:18:\"fas fa-border-none\";s:39:\"<i class=\"fas\">&#xf850;</i> border-none\";s:19:\"fas fa-border-style\";s:40:\"<i class=\"fas\">&#xf853;</i> border-style\";s:19:\"fas fa-bowling-ball\";s:40:\"<i class=\"fas\">&#xf436;</i> bowling-ball\";s:10:\"fas fa-box\";s:31:\"<i class=\"fas\">&#xf466;</i> box\";s:15:\"fas fa-box-open\";s:36:\"<i class=\"fas\">&#xf49e;</i> box-open\";s:17:\"fas fa-box-tissue\";s:38:\"<i class=\"fas\">&#xe05b;</i> box-tissue\";s:12:\"fas fa-boxes\";s:33:\"<i class=\"fas\">&#xf468;</i> boxes\";s:14:\"fas fa-braille\";s:35:\"<i class=\"fas\">&#xf2a1;</i> braille\";s:12:\"fas fa-brain\";s:33:\"<i class=\"fas\">&#xf5dc;</i> brain\";s:18:\"fas fa-bread-slice\";s:39:\"<i class=\"fas\">&#xf7ec;</i> bread-slice\";s:16:\"fas fa-briefcase\";s:37:\"<i class=\"fas\">&#xf0b1;</i> briefcase\";s:24:\"fas fa-briefcase-medical\";s:45:\"<i class=\"fas\">&#xf469;</i> briefcase-medical\";s:22:\"fas fa-broadcast-tower\";s:43:\"<i class=\"fas\">&#xf519;</i> broadcast-tower\";s:12:\"fas fa-broom\";s:33:\"<i class=\"fas\">&#xf51a;</i> broom\";s:12:\"fas fa-brush\";s:33:\"<i class=\"fas\">&#xf55d;</i> brush\";s:10:\"fas fa-bug\";s:31:\"<i class=\"fas\">&#xf188;</i> bug\";s:15:\"fas fa-building\";s:36:\"<i class=\"fas\">&#xf1ad;</i> building\";s:15:\"fas fa-bullhorn\";s:36:\"<i class=\"fas\">&#xf0a1;</i> bullhorn\";s:15:\"fas fa-bullseye\";s:36:\"<i class=\"fas\">&#xf140;</i> bullseye\";s:11:\"fas fa-burn\";s:32:\"<i class=\"fas\">&#xf46a;</i> burn\";s:10:\"fas fa-bus\";s:31:\"<i class=\"fas\">&#xf207;</i> bus\";s:14:\"fas fa-bus-alt\";s:35:\"<i class=\"fas\">&#xf55e;</i> bus-alt\";s:20:\"fas fa-business-time\";s:41:\"<i class=\"fas\">&#xf64a;</i> business-time\";s:17:\"fas fa-calculator\";s:38:\"<i class=\"fas\">&#xf1ec;</i> calculator\";s:15:\"fas fa-calendar\";s:36:\"<i class=\"fas\">&#xf133;</i> calendar\";s:19:\"fas fa-calendar-alt\";s:40:\"<i class=\"fas\">&#xf073;</i> calendar-alt\";s:21:\"fas fa-calendar-check\";s:42:\"<i class=\"fas\">&#xf274;</i> calendar-check\";s:19:\"fas fa-calendar-day\";s:40:\"<i class=\"fas\">&#xf783;</i> calendar-day\";s:21:\"fas fa-calendar-minus\";s:42:\"<i class=\"fas\">&#xf272;</i> calendar-minus\";s:20:\"fas fa-calendar-plus\";s:41:\"<i class=\"fas\">&#xf271;</i> calendar-plus\";s:21:\"fas fa-calendar-times\";s:42:\"<i class=\"fas\">&#xf273;</i> calendar-times\";s:20:\"fas fa-calendar-week\";s:41:\"<i class=\"fas\">&#xf784;</i> calendar-week\";s:13:\"fas fa-camera\";s:34:\"<i class=\"fas\">&#xf030;</i> camera\";s:19:\"fas fa-camera-retro\";s:40:\"<i class=\"fas\">&#xf083;</i> camera-retro\";s:17:\"fas fa-campground\";s:38:\"<i class=\"fas\">&#xf6bb;</i> campground\";s:17:\"fas fa-candy-cane\";s:38:\"<i class=\"fas\">&#xf786;</i> candy-cane\";s:15:\"fas fa-cannabis\";s:36:\"<i class=\"fas\">&#xf55f;</i> cannabis\";s:15:\"fas fa-capsules\";s:36:\"<i class=\"fas\">&#xf46b;</i> capsules\";s:10:\"fas fa-car\";s:31:\"<i class=\"fas\">&#xf1b9;</i> car\";s:14:\"fas fa-car-alt\";s:35:\"<i class=\"fas\">&#xf5de;</i> car-alt\";s:18:\"fas fa-car-battery\";s:39:\"<i class=\"fas\">&#xf5df;</i> car-battery\";s:16:\"fas fa-car-crash\";s:37:\"<i class=\"fas\">&#xf5e1;</i> car-crash\";s:15:\"fas fa-car-side\";s:36:\"<i class=\"fas\">&#xf5e4;</i> car-side\";s:14:\"fas fa-caravan\";s:35:\"<i class=\"fas\">&#xf8ff;</i> caravan\";s:17:\"fas fa-caret-down\";s:38:\"<i class=\"fas\">&#xf0d7;</i> caret-down\";s:17:\"fas fa-caret-left\";s:38:\"<i class=\"fas\">&#xf0d9;</i> caret-left\";s:18:\"fas fa-caret-right\";s:39:\"<i class=\"fas\">&#xf0da;</i> caret-right\";s:24:\"fas fa-caret-square-down\";s:45:\"<i class=\"fas\">&#xf150;</i> caret-square-down\";s:24:\"fas fa-caret-square-left\";s:45:\"<i class=\"fas\">&#xf191;</i> caret-square-left\";s:25:\"fas fa-caret-square-right\";s:46:\"<i class=\"fas\">&#xf152;</i> caret-square-right\";s:22:\"fas fa-caret-square-up\";s:43:\"<i class=\"fas\">&#xf151;</i> caret-square-up\";s:15:\"fas fa-caret-up\";s:36:\"<i class=\"fas\">&#xf0d8;</i> caret-up\";s:13:\"fas fa-carrot\";s:34:\"<i class=\"fas\">&#xf787;</i> carrot\";s:22:\"fas fa-cart-arrow-down\";s:43:\"<i class=\"fas\">&#xf218;</i> cart-arrow-down\";s:16:\"fas fa-cart-plus\";s:37:\"<i class=\"fas\">&#xf217;</i> cart-plus\";s:20:\"fas fa-cash-register\";s:41:\"<i class=\"fas\">&#xf788;</i> cash-register\";s:10:\"fas fa-cat\";s:31:\"<i class=\"fas\">&#xf6be;</i> cat\";s:18:\"fas fa-certificate\";s:39:\"<i class=\"fas\">&#xf0a3;</i> certificate\";s:12:\"fas fa-chair\";s:33:\"<i class=\"fas\">&#xf6c0;</i> chair\";s:17:\"fas fa-chalkboard\";s:38:\"<i class=\"fas\">&#xf51b;</i> chalkboard\";s:25:\"fas fa-chalkboard-teacher\";s:46:\"<i class=\"fas\">&#xf51c;</i> chalkboard-teacher\";s:23:\"fas fa-charging-station\";s:44:\"<i class=\"fas\">&#xf5e7;</i> charging-station\";s:17:\"fas fa-chart-area\";s:38:\"<i class=\"fas\">&#xf1fe;</i> chart-area\";s:16:\"fas fa-chart-bar\";s:37:\"<i class=\"fas\">&#xf080;</i> chart-bar\";s:17:\"fas fa-chart-line\";s:38:\"<i class=\"fas\">&#xf201;</i> chart-line\";s:16:\"fas fa-chart-pie\";s:37:\"<i class=\"fas\">&#xf200;</i> chart-pie\";s:12:\"fas fa-check\";s:33:\"<i class=\"fas\">&#xf00c;</i> check\";s:19:\"fas fa-check-circle\";s:40:\"<i class=\"fas\">&#xf058;</i> check-circle\";s:19:\"fas fa-check-double\";s:40:\"<i class=\"fas\">&#xf560;</i> check-double\";s:19:\"fas fa-check-square\";s:40:\"<i class=\"fas\">&#xf14a;</i> check-square\";s:13:\"fas fa-cheese\";s:34:\"<i class=\"fas\">&#xf7ef;</i> cheese\";s:12:\"fas fa-chess\";s:33:\"<i class=\"fas\">&#xf439;</i> chess\";s:19:\"fas fa-chess-bishop\";s:40:\"<i class=\"fas\">&#xf43a;</i> chess-bishop\";s:18:\"fas fa-chess-board\";s:39:\"<i class=\"fas\">&#xf43c;</i> chess-board\";s:17:\"fas fa-chess-king\";s:38:\"<i class=\"fas\">&#xf43f;</i> chess-king\";s:19:\"fas fa-chess-knight\";s:40:\"<i class=\"fas\">&#xf441;</i> chess-knight\";s:17:\"fas fa-chess-pawn\";s:38:\"<i class=\"fas\">&#xf443;</i> chess-pawn\";s:18:\"fas fa-chess-queen\";s:39:\"<i class=\"fas\">&#xf445;</i> chess-queen\";s:17:\"fas fa-chess-rook\";s:38:\"<i class=\"fas\">&#xf447;</i> chess-rook\";s:26:\"fas fa-chevron-circle-down\";s:47:\"<i class=\"fas\">&#xf13a;</i> chevron-circle-down\";s:26:\"fas fa-chevron-circle-left\";s:47:\"<i class=\"fas\">&#xf137;</i> chevron-circle-left\";s:27:\"fas fa-chevron-circle-right\";s:48:\"<i class=\"fas\">&#xf138;</i> chevron-circle-right\";s:24:\"fas fa-chevron-circle-up\";s:45:\"<i class=\"fas\">&#xf139;</i> chevron-circle-up\";s:19:\"fas fa-chevron-down\";s:40:\"<i class=\"fas\">&#xf078;</i> chevron-down\";s:19:\"fas fa-chevron-left\";s:40:\"<i class=\"fas\">&#xf053;</i> chevron-left\";s:20:\"fas fa-chevron-right\";s:41:\"<i class=\"fas\">&#xf054;</i> chevron-right\";s:17:\"fas fa-chevron-up\";s:38:\"<i class=\"fas\">&#xf077;</i> chevron-up\";s:12:\"fas fa-child\";s:33:\"<i class=\"fas\">&#xf1ae;</i> child\";s:13:\"fas fa-church\";s:34:\"<i class=\"fas\">&#xf51d;</i> church\";s:13:\"fas fa-circle\";s:34:\"<i class=\"fas\">&#xf111;</i> circle\";s:19:\"fas fa-circle-notch\";s:40:\"<i class=\"fas\">&#xf1ce;</i> circle-notch\";s:11:\"fas fa-city\";s:32:\"<i class=\"fas\">&#xf64f;</i> city\";s:21:\"fas fa-clinic-medical\";s:42:\"<i class=\"fas\">&#xf7f2;</i> clinic-medical\";s:16:\"fas fa-clipboard\";s:37:\"<i class=\"fas\">&#xf328;</i> clipboard\";s:22:\"fas fa-clipboard-check\";s:43:\"<i class=\"fas\">&#xf46c;</i> clipboard-check\";s:21:\"fas fa-clipboard-list\";s:42:\"<i class=\"fas\">&#xf46d;</i> clipboard-list\";s:12:\"fas fa-clock\";s:33:\"<i class=\"fas\">&#xf017;</i> clock\";s:12:\"fas fa-clone\";s:33:\"<i class=\"fas\">&#xf24d;</i> clone\";s:24:\"fas fa-closed-captioning\";s:45:\"<i class=\"fas\">&#xf20a;</i> closed-captioning\";s:12:\"fas fa-cloud\";s:33:\"<i class=\"fas\">&#xf0c2;</i> cloud\";s:25:\"fas fa-cloud-download-alt\";s:46:\"<i class=\"fas\">&#xf381;</i> cloud-download-alt\";s:21:\"fas fa-cloud-meatball\";s:42:\"<i class=\"fas\">&#xf73b;</i> cloud-meatball\";s:17:\"fas fa-cloud-moon\";s:38:\"<i class=\"fas\">&#xf6c3;</i> cloud-moon\";s:22:\"fas fa-cloud-moon-rain\";s:43:\"<i class=\"fas\">&#xf73c;</i> cloud-moon-rain\";s:17:\"fas fa-cloud-rain\";s:38:\"<i class=\"fas\">&#xf73d;</i> cloud-rain\";s:26:\"fas fa-cloud-showers-heavy\";s:47:\"<i class=\"fas\">&#xf740;</i> cloud-showers-heavy\";s:16:\"fas fa-cloud-sun\";s:37:\"<i class=\"fas\">&#xf6c4;</i> cloud-sun\";s:21:\"fas fa-cloud-sun-rain\";s:42:\"<i class=\"fas\">&#xf743;</i> cloud-sun-rain\";s:23:\"fas fa-cloud-upload-alt\";s:44:\"<i class=\"fas\">&#xf382;</i> cloud-upload-alt\";s:15:\"fas fa-cocktail\";s:36:\"<i class=\"fas\">&#xf561;</i> cocktail\";s:11:\"fas fa-code\";s:32:\"<i class=\"fas\">&#xf121;</i> code\";s:18:\"fas fa-code-branch\";s:39:\"<i class=\"fas\">&#xf126;</i> code-branch\";s:13:\"fas fa-coffee\";s:34:\"<i class=\"fas\">&#xf0f4;</i> coffee\";s:10:\"fas fa-cog\";s:31:\"<i class=\"fas\">&#xf013;</i> cog\";s:11:\"fas fa-cogs\";s:32:\"<i class=\"fas\">&#xf085;</i> cogs\";s:12:\"fas fa-coins\";s:33:\"<i class=\"fas\">&#xf51e;</i> coins\";s:14:\"fas fa-columns\";s:35:\"<i class=\"fas\">&#xf0db;</i> columns\";s:14:\"fas fa-comment\";s:35:\"<i class=\"fas\">&#xf075;</i> comment\";s:18:\"fas fa-comment-alt\";s:39:\"<i class=\"fas\">&#xf27a;</i> comment-alt\";s:21:\"fas fa-comment-dollar\";s:42:\"<i class=\"fas\">&#xf651;</i> comment-dollar\";s:19:\"fas fa-comment-dots\";s:40:\"<i class=\"fas\">&#xf4ad;</i> comment-dots\";s:22:\"fas fa-comment-medical\";s:43:\"<i class=\"fas\">&#xf7f5;</i> comment-medical\";s:20:\"fas fa-comment-slash\";s:41:\"<i class=\"fas\">&#xf4b3;</i> comment-slash\";s:15:\"fas fa-comments\";s:36:\"<i class=\"fas\">&#xf086;</i> comments\";s:22:\"fas fa-comments-dollar\";s:43:\"<i class=\"fas\">&#xf653;</i> comments-dollar\";s:19:\"fas fa-compact-disc\";s:40:\"<i class=\"fas\">&#xf51f;</i> compact-disc\";s:14:\"fas fa-compass\";s:35:\"<i class=\"fas\">&#xf14e;</i> compass\";s:15:\"fas fa-compress\";s:36:\"<i class=\"fas\">&#xf066;</i> compress\";s:19:\"fas fa-compress-alt\";s:40:\"<i class=\"fas\">&#xf422;</i> compress-alt\";s:26:\"fas fa-compress-arrows-alt\";s:47:\"<i class=\"fas\">&#xf78c;</i> compress-arrows-alt\";s:21:\"fas fa-concierge-bell\";s:42:\"<i class=\"fas\">&#xf562;</i> concierge-bell\";s:13:\"fas fa-cookie\";s:34:\"<i class=\"fas\">&#xf563;</i> cookie\";s:18:\"fas fa-cookie-bite\";s:39:\"<i class=\"fas\">&#xf564;</i> cookie-bite\";s:11:\"fas fa-copy\";s:32:\"<i class=\"fas\">&#xf0c5;</i> copy\";s:16:\"fas fa-copyright\";s:37:\"<i class=\"fas\">&#xf1f9;</i> copyright\";s:12:\"fas fa-couch\";s:33:\"<i class=\"fas\">&#xf4b8;</i> couch\";s:18:\"fas fa-credit-card\";s:39:\"<i class=\"fas\">&#xf09d;</i> credit-card\";s:11:\"fas fa-crop\";s:32:\"<i class=\"fas\">&#xf125;</i> crop\";s:15:\"fas fa-crop-alt\";s:36:\"<i class=\"fas\">&#xf565;</i> crop-alt\";s:12:\"fas fa-cross\";s:33:\"<i class=\"fas\">&#xf654;</i> cross\";s:17:\"fas fa-crosshairs\";s:38:\"<i class=\"fas\">&#xf05b;</i> crosshairs\";s:11:\"fas fa-crow\";s:32:\"<i class=\"fas\">&#xf520;</i> crow\";s:12:\"fas fa-crown\";s:33:\"<i class=\"fas\">&#xf521;</i> crown\";s:13:\"fas fa-crutch\";s:34:\"<i class=\"fas\">&#xf7f7;</i> crutch\";s:11:\"fas fa-cube\";s:32:\"<i class=\"fas\">&#xf1b2;</i> cube\";s:12:\"fas fa-cubes\";s:33:\"<i class=\"fas\">&#xf1b3;</i> cubes\";s:10:\"fas fa-cut\";s:31:\"<i class=\"fas\">&#xf0c4;</i> cut\";s:15:\"fas fa-database\";s:36:\"<i class=\"fas\">&#xf1c0;</i> database\";s:11:\"fas fa-deaf\";s:32:\"<i class=\"fas\">&#xf2a4;</i> deaf\";s:15:\"fas fa-democrat\";s:36:\"<i class=\"fas\">&#xf747;</i> democrat\";s:14:\"fas fa-desktop\";s:35:\"<i class=\"fas\">&#xf108;</i> desktop\";s:19:\"fas fa-dharmachakra\";s:40:\"<i class=\"fas\">&#xf655;</i> dharmachakra\";s:16:\"fas fa-diagnoses\";s:37:\"<i class=\"fas\">&#xf470;</i> diagnoses\";s:11:\"fas fa-dice\";s:32:\"<i class=\"fas\">&#xf522;</i> dice\";s:15:\"fas fa-dice-d20\";s:36:\"<i class=\"fas\">&#xf6cf;</i> dice-d20\";s:14:\"fas fa-dice-d6\";s:35:\"<i class=\"fas\">&#xf6d1;</i> dice-d6\";s:16:\"fas fa-dice-five\";s:37:\"<i class=\"fas\">&#xf523;</i> dice-five\";s:16:\"fas fa-dice-four\";s:37:\"<i class=\"fas\">&#xf524;</i> dice-four\";s:15:\"fas fa-dice-one\";s:36:\"<i class=\"fas\">&#xf525;</i> dice-one\";s:15:\"fas fa-dice-six\";s:36:\"<i class=\"fas\">&#xf526;</i> dice-six\";s:17:\"fas fa-dice-three\";s:38:\"<i class=\"fas\">&#xf527;</i> dice-three\";s:15:\"fas fa-dice-two\";s:36:\"<i class=\"fas\">&#xf528;</i> dice-two\";s:25:\"fas fa-digital-tachograph\";s:46:\"<i class=\"fas\">&#xf566;</i> digital-tachograph\";s:17:\"fas fa-directions\";s:38:\"<i class=\"fas\">&#xf5eb;</i> directions\";s:14:\"fas fa-disease\";s:35:\"<i class=\"fas\">&#xf7fa;</i> disease\";s:13:\"fas fa-divide\";s:34:\"<i class=\"fas\">&#xf529;</i> divide\";s:12:\"fas fa-dizzy\";s:33:\"<i class=\"fas\">&#xf567;</i> dizzy\";s:10:\"fas fa-dna\";s:31:\"<i class=\"fas\">&#xf471;</i> dna\";s:10:\"fas fa-dog\";s:31:\"<i class=\"fas\">&#xf6d3;</i> dog\";s:18:\"fas fa-dollar-sign\";s:39:\"<i class=\"fas\">&#xf155;</i> dollar-sign\";s:12:\"fas fa-dolly\";s:33:\"<i class=\"fas\">&#xf472;</i> dolly\";s:20:\"fas fa-dolly-flatbed\";s:41:\"<i class=\"fas\">&#xf474;</i> dolly-flatbed\";s:13:\"fas fa-donate\";s:34:\"<i class=\"fas\">&#xf4b9;</i> donate\";s:18:\"fas fa-door-closed\";s:39:\"<i class=\"fas\">&#xf52a;</i> door-closed\";s:16:\"fas fa-door-open\";s:37:\"<i class=\"fas\">&#xf52b;</i> door-open\";s:17:\"fas fa-dot-circle\";s:38:\"<i class=\"fas\">&#xf192;</i> dot-circle\";s:11:\"fas fa-dove\";s:32:\"<i class=\"fas\">&#xf4ba;</i> dove\";s:15:\"fas fa-download\";s:36:\"<i class=\"fas\">&#xf019;</i> download\";s:23:\"fas fa-drafting-compass\";s:44:\"<i class=\"fas\">&#xf568;</i> drafting-compass\";s:13:\"fas fa-dragon\";s:34:\"<i class=\"fas\">&#xf6d5;</i> dragon\";s:19:\"fas fa-draw-polygon\";s:40:\"<i class=\"fas\">&#xf5ee;</i> draw-polygon\";s:11:\"fas fa-drum\";s:32:\"<i class=\"fas\">&#xf569;</i> drum\";s:20:\"fas fa-drum-steelpan\";s:41:\"<i class=\"fas\">&#xf56a;</i> drum-steelpan\";s:21:\"fas fa-drumstick-bite\";s:42:\"<i class=\"fas\">&#xf6d7;</i> drumstick-bite\";s:15:\"fas fa-dumbbell\";s:36:\"<i class=\"fas\">&#xf44b;</i> dumbbell\";s:15:\"fas fa-dumpster\";s:36:\"<i class=\"fas\">&#xf793;</i> dumpster\";s:20:\"fas fa-dumpster-fire\";s:41:\"<i class=\"fas\">&#xf794;</i> dumpster-fire\";s:14:\"fas fa-dungeon\";s:35:\"<i class=\"fas\">&#xf6d9;</i> dungeon\";s:11:\"fas fa-edit\";s:32:\"<i class=\"fas\">&#xf044;</i> edit\";s:10:\"fas fa-egg\";s:31:\"<i class=\"fas\">&#xf7fb;</i> egg\";s:12:\"fas fa-eject\";s:33:\"<i class=\"fas\">&#xf052;</i> eject\";s:17:\"fas fa-ellipsis-h\";s:38:\"<i class=\"fas\">&#xf141;</i> ellipsis-h\";s:17:\"fas fa-ellipsis-v\";s:38:\"<i class=\"fas\">&#xf142;</i> ellipsis-v\";s:15:\"fas fa-envelope\";s:36:\"<i class=\"fas\">&#xf0e0;</i> envelope\";s:20:\"fas fa-envelope-open\";s:41:\"<i class=\"fas\">&#xf2b6;</i> envelope-open\";s:25:\"fas fa-envelope-open-text\";s:46:\"<i class=\"fas\">&#xf658;</i> envelope-open-text\";s:22:\"fas fa-envelope-square\";s:43:\"<i class=\"fas\">&#xf199;</i> envelope-square\";s:13:\"fas fa-equals\";s:34:\"<i class=\"fas\">&#xf52c;</i> equals\";s:13:\"fas fa-eraser\";s:34:\"<i class=\"fas\">&#xf12d;</i> eraser\";s:15:\"fas fa-ethernet\";s:36:\"<i class=\"fas\">&#xf796;</i> ethernet\";s:16:\"fas fa-euro-sign\";s:37:\"<i class=\"fas\">&#xf153;</i> euro-sign\";s:19:\"fas fa-exchange-alt\";s:40:\"<i class=\"fas\">&#xf362;</i> exchange-alt\";s:18:\"fas fa-exclamation\";s:39:\"<i class=\"fas\">&#xf12a;</i> exclamation\";s:25:\"fas fa-exclamation-circle\";s:46:\"<i class=\"fas\">&#xf06a;</i> exclamation-circle\";s:27:\"fas fa-exclamation-triangle\";s:48:\"<i class=\"fas\">&#xf071;</i> exclamation-triangle\";s:13:\"fas fa-expand\";s:34:\"<i class=\"fas\">&#xf065;</i> expand\";s:17:\"fas fa-expand-alt\";s:38:\"<i class=\"fas\">&#xf424;</i> expand-alt\";s:24:\"fas fa-expand-arrows-alt\";s:45:\"<i class=\"fas\">&#xf31e;</i> expand-arrows-alt\";s:24:\"fas fa-external-link-alt\";s:45:\"<i class=\"fas\">&#xf35d;</i> external-link-alt\";s:31:\"fas fa-external-link-square-alt\";s:52:\"<i class=\"fas\">&#xf360;</i> external-link-square-alt\";s:10:\"fas fa-eye\";s:31:\"<i class=\"fas\">&#xf06e;</i> eye\";s:18:\"fas fa-eye-dropper\";s:39:\"<i class=\"fas\">&#xf1fb;</i> eye-dropper\";s:16:\"fas fa-eye-slash\";s:37:\"<i class=\"fas\">&#xf070;</i> eye-slash\";s:10:\"fas fa-fan\";s:31:\"<i class=\"fas\">&#xf863;</i> fan\";s:20:\"fas fa-fast-backward\";s:41:\"<i class=\"fas\">&#xf049;</i> fast-backward\";s:19:\"fas fa-fast-forward\";s:40:\"<i class=\"fas\">&#xf050;</i> fast-forward\";s:13:\"fas fa-faucet\";s:34:\"<i class=\"fas\">&#xe005;</i> faucet\";s:10:\"fas fa-fax\";s:31:\"<i class=\"fas\">&#xf1ac;</i> fax\";s:14:\"fas fa-feather\";s:35:\"<i class=\"fas\">&#xf52d;</i> feather\";s:18:\"fas fa-feather-alt\";s:39:\"<i class=\"fas\">&#xf56b;</i> feather-alt\";s:13:\"fas fa-female\";s:34:\"<i class=\"fas\">&#xf182;</i> female\";s:18:\"fas fa-fighter-jet\";s:39:\"<i class=\"fas\">&#xf0fb;</i> fighter-jet\";s:11:\"fas fa-file\";s:32:\"<i class=\"fas\">&#xf15b;</i> file\";s:15:\"fas fa-file-alt\";s:36:\"<i class=\"fas\">&#xf15c;</i> file-alt\";s:19:\"fas fa-file-archive\";s:40:\"<i class=\"fas\">&#xf1c6;</i> file-archive\";s:17:\"fas fa-file-audio\";s:38:\"<i class=\"fas\">&#xf1c7;</i> file-audio\";s:16:\"fas fa-file-code\";s:37:\"<i class=\"fas\">&#xf1c9;</i> file-code\";s:20:\"fas fa-file-contract\";s:41:\"<i class=\"fas\">&#xf56c;</i> file-contract\";s:15:\"fas fa-file-csv\";s:36:\"<i class=\"fas\">&#xf6dd;</i> file-csv\";s:20:\"fas fa-file-download\";s:41:\"<i class=\"fas\">&#xf56d;</i> file-download\";s:17:\"fas fa-file-excel\";s:38:\"<i class=\"fas\">&#xf1c3;</i> file-excel\";s:18:\"fas fa-file-export\";s:39:\"<i class=\"fas\">&#xf56e;</i> file-export\";s:17:\"fas fa-file-image\";s:38:\"<i class=\"fas\">&#xf1c5;</i> file-image\";s:18:\"fas fa-file-import\";s:39:\"<i class=\"fas\">&#xf56f;</i> file-import\";s:19:\"fas fa-file-invoice\";s:40:\"<i class=\"fas\">&#xf570;</i> file-invoice\";s:26:\"fas fa-file-invoice-dollar\";s:47:\"<i class=\"fas\">&#xf571;</i> file-invoice-dollar\";s:19:\"fas fa-file-medical\";s:40:\"<i class=\"fas\">&#xf477;</i> file-medical\";s:23:\"fas fa-file-medical-alt\";s:44:\"<i class=\"fas\">&#xf478;</i> file-medical-alt\";s:15:\"fas fa-file-pdf\";s:36:\"<i class=\"fas\">&#xf1c1;</i> file-pdf\";s:22:\"fas fa-file-powerpoint\";s:43:\"<i class=\"fas\">&#xf1c4;</i> file-powerpoint\";s:24:\"fas fa-file-prescription\";s:45:\"<i class=\"fas\">&#xf572;</i> file-prescription\";s:21:\"fas fa-file-signature\";s:42:\"<i class=\"fas\">&#xf573;</i> file-signature\";s:18:\"fas fa-file-upload\";s:39:\"<i class=\"fas\">&#xf574;</i> file-upload\";s:17:\"fas fa-file-video\";s:38:\"<i class=\"fas\">&#xf1c8;</i> file-video\";s:16:\"fas fa-file-word\";s:37:\"<i class=\"fas\">&#xf1c2;</i> file-word\";s:11:\"fas fa-fill\";s:32:\"<i class=\"fas\">&#xf575;</i> fill\";s:16:\"fas fa-fill-drip\";s:37:\"<i class=\"fas\">&#xf576;</i> fill-drip\";s:11:\"fas fa-film\";s:32:\"<i class=\"fas\">&#xf008;</i> film\";s:13:\"fas fa-filter\";s:34:\"<i class=\"fas\">&#xf0b0;</i> filter\";s:18:\"fas fa-fingerprint\";s:39:\"<i class=\"fas\">&#xf577;</i> fingerprint\";s:11:\"fas fa-fire\";s:32:\"<i class=\"fas\">&#xf06d;</i> fire\";s:15:\"fas fa-fire-alt\";s:36:\"<i class=\"fas\">&#xf7e4;</i> fire-alt\";s:24:\"fas fa-fire-extinguisher\";s:45:\"<i class=\"fas\">&#xf134;</i> fire-extinguisher\";s:16:\"fas fa-first-aid\";s:37:\"<i class=\"fas\">&#xf479;</i> first-aid\";s:11:\"fas fa-fish\";s:32:\"<i class=\"fas\">&#xf578;</i> fish\";s:18:\"fas fa-fist-raised\";s:39:\"<i class=\"fas\">&#xf6de;</i> fist-raised\";s:11:\"fas fa-flag\";s:32:\"<i class=\"fas\">&#xf024;</i> flag\";s:21:\"fas fa-flag-checkered\";s:42:\"<i class=\"fas\">&#xf11e;</i> flag-checkered\";s:15:\"fas fa-flag-usa\";s:36:\"<i class=\"fas\">&#xf74d;</i> flag-usa\";s:12:\"fas fa-flask\";s:33:\"<i class=\"fas\">&#xf0c3;</i> flask\";s:14:\"fas fa-flushed\";s:35:\"<i class=\"fas\">&#xf579;</i> flushed\";s:13:\"fas fa-folder\";s:34:\"<i class=\"fas\">&#xf07b;</i> folder\";s:19:\"fas fa-folder-minus\";s:40:\"<i class=\"fas\">&#xf65d;</i> folder-minus\";s:18:\"fas fa-folder-open\";s:39:\"<i class=\"fas\">&#xf07c;</i> folder-open\";s:18:\"fas fa-folder-plus\";s:39:\"<i class=\"fas\">&#xf65e;</i> folder-plus\";s:11:\"fas fa-font\";s:32:\"<i class=\"fas\">&#xf031;</i> font\";s:29:\"fas fa-font-awesome-logo-full\";s:50:\"<i class=\"fas\">&#xf4e6;</i> font-awesome-logo-full\";s:20:\"fas fa-football-ball\";s:41:\"<i class=\"fas\">&#xf44e;</i> football-ball\";s:14:\"fas fa-forward\";s:35:\"<i class=\"fas\">&#xf04e;</i> forward\";s:11:\"fas fa-frog\";s:32:\"<i class=\"fas\">&#xf52e;</i> frog\";s:12:\"fas fa-frown\";s:33:\"<i class=\"fas\">&#xf119;</i> frown\";s:17:\"fas fa-frown-open\";s:38:\"<i class=\"fas\">&#xf57a;</i> frown-open\";s:20:\"fas fa-funnel-dollar\";s:41:\"<i class=\"fas\">&#xf662;</i> funnel-dollar\";s:13:\"fas fa-futbol\";s:34:\"<i class=\"fas\">&#xf1e3;</i> futbol\";s:14:\"fas fa-gamepad\";s:35:\"<i class=\"fas\">&#xf11b;</i> gamepad\";s:15:\"fas fa-gas-pump\";s:36:\"<i class=\"fas\">&#xf52f;</i> gas-pump\";s:12:\"fas fa-gavel\";s:33:\"<i class=\"fas\">&#xf0e3;</i> gavel\";s:10:\"fas fa-gem\";s:31:\"<i class=\"fas\">&#xf3a5;</i> gem\";s:17:\"fas fa-genderless\";s:38:\"<i class=\"fas\">&#xf22d;</i> genderless\";s:12:\"fas fa-ghost\";s:33:\"<i class=\"fas\">&#xf6e2;</i> ghost\";s:11:\"fas fa-gift\";s:32:\"<i class=\"fas\">&#xf06b;</i> gift\";s:12:\"fas fa-gifts\";s:33:\"<i class=\"fas\">&#xf79c;</i> gifts\";s:19:\"fas fa-glass-cheers\";s:40:\"<i class=\"fas\">&#xf79f;</i> glass-cheers\";s:20:\"fas fa-glass-martini\";s:41:\"<i class=\"fas\">&#xf000;</i> glass-martini\";s:24:\"fas fa-glass-martini-alt\";s:45:\"<i class=\"fas\">&#xf57b;</i> glass-martini-alt\";s:20:\"fas fa-glass-whiskey\";s:41:\"<i class=\"fas\">&#xf7a0;</i> glass-whiskey\";s:14:\"fas fa-glasses\";s:35:\"<i class=\"fas\">&#xf530;</i> glasses\";s:12:\"fas fa-globe\";s:33:\"<i class=\"fas\">&#xf0ac;</i> globe\";s:19:\"fas fa-globe-africa\";s:40:\"<i class=\"fas\">&#xf57c;</i> globe-africa\";s:21:\"fas fa-globe-americas\";s:42:\"<i class=\"fas\">&#xf57d;</i> globe-americas\";s:17:\"fas fa-globe-asia\";s:38:\"<i class=\"fas\">&#xf57e;</i> globe-asia\";s:19:\"fas fa-globe-europe\";s:40:\"<i class=\"fas\">&#xf7a2;</i> globe-europe\";s:16:\"fas fa-golf-ball\";s:37:\"<i class=\"fas\">&#xf450;</i> golf-ball\";s:14:\"fas fa-gopuram\";s:35:\"<i class=\"fas\">&#xf664;</i> gopuram\";s:21:\"fas fa-graduation-cap\";s:42:\"<i class=\"fas\">&#xf19d;</i> graduation-cap\";s:19:\"fas fa-greater-than\";s:40:\"<i class=\"fas\">&#xf531;</i> greater-than\";s:25:\"fas fa-greater-than-equal\";s:46:\"<i class=\"fas\">&#xf532;</i> greater-than-equal\";s:14:\"fas fa-grimace\";s:35:\"<i class=\"fas\">&#xf57f;</i> grimace\";s:11:\"fas fa-grin\";s:32:\"<i class=\"fas\">&#xf580;</i> grin\";s:15:\"fas fa-grin-alt\";s:36:\"<i class=\"fas\">&#xf581;</i> grin-alt\";s:16:\"fas fa-grin-beam\";s:37:\"<i class=\"fas\">&#xf582;</i> grin-beam\";s:22:\"fas fa-grin-beam-sweat\";s:43:\"<i class=\"fas\">&#xf583;</i> grin-beam-sweat\";s:18:\"fas fa-grin-hearts\";s:39:\"<i class=\"fas\">&#xf584;</i> grin-hearts\";s:18:\"fas fa-grin-squint\";s:39:\"<i class=\"fas\">&#xf585;</i> grin-squint\";s:24:\"fas fa-grin-squint-tears\";s:45:\"<i class=\"fas\">&#xf586;</i> grin-squint-tears\";s:17:\"fas fa-grin-stars\";s:38:\"<i class=\"fas\">&#xf587;</i> grin-stars\";s:17:\"fas fa-grin-tears\";s:38:\"<i class=\"fas\">&#xf588;</i> grin-tears\";s:18:\"fas fa-grin-tongue\";s:39:\"<i class=\"fas\">&#xf589;</i> grin-tongue\";s:25:\"fas fa-grin-tongue-squint\";s:46:\"<i class=\"fas\">&#xf58a;</i> grin-tongue-squint\";s:23:\"fas fa-grin-tongue-wink\";s:44:\"<i class=\"fas\">&#xf58b;</i> grin-tongue-wink\";s:16:\"fas fa-grin-wink\";s:37:\"<i class=\"fas\">&#xf58c;</i> grin-wink\";s:22:\"fas fa-grip-horizontal\";s:43:\"<i class=\"fas\">&#xf58d;</i> grip-horizontal\";s:17:\"fas fa-grip-lines\";s:38:\"<i class=\"fas\">&#xf7a4;</i> grip-lines\";s:26:\"fas fa-grip-lines-vertical\";s:47:\"<i class=\"fas\">&#xf7a5;</i> grip-lines-vertical\";s:20:\"fas fa-grip-vertical\";s:41:\"<i class=\"fas\">&#xf58e;</i> grip-vertical\";s:13:\"fas fa-guitar\";s:34:\"<i class=\"fas\">&#xf7a6;</i> guitar\";s:15:\"fas fa-h-square\";s:36:\"<i class=\"fas\">&#xf0fd;</i> h-square\";s:16:\"fas fa-hamburger\";s:37:\"<i class=\"fas\">&#xf805;</i> hamburger\";s:13:\"fas fa-hammer\";s:34:\"<i class=\"fas\">&#xf6e3;</i> hammer\";s:12:\"fas fa-hamsa\";s:33:\"<i class=\"fas\">&#xf665;</i> hamsa\";s:19:\"fas fa-hand-holding\";s:40:\"<i class=\"fas\">&#xf4bd;</i> hand-holding\";s:25:\"fas fa-hand-holding-heart\";s:46:\"<i class=\"fas\">&#xf4be;</i> hand-holding-heart\";s:27:\"fas fa-hand-holding-medical\";s:48:\"<i class=\"fas\">&#xe05c;</i> hand-holding-medical\";s:23:\"fas fa-hand-holding-usd\";s:44:\"<i class=\"fas\">&#xf4c0;</i> hand-holding-usd\";s:25:\"fas fa-hand-holding-water\";s:46:\"<i class=\"fas\">&#xf4c1;</i> hand-holding-water\";s:18:\"fas fa-hand-lizard\";s:39:\"<i class=\"fas\">&#xf258;</i> hand-lizard\";s:25:\"fas fa-hand-middle-finger\";s:46:\"<i class=\"fas\">&#xf806;</i> hand-middle-finger\";s:17:\"fas fa-hand-paper\";s:38:\"<i class=\"fas\">&#xf256;</i> hand-paper\";s:17:\"fas fa-hand-peace\";s:38:\"<i class=\"fas\">&#xf25b;</i> hand-peace\";s:22:\"fas fa-hand-point-down\";s:43:\"<i class=\"fas\">&#xf0a7;</i> hand-point-down\";s:22:\"fas fa-hand-point-left\";s:43:\"<i class=\"fas\">&#xf0a5;</i> hand-point-left\";s:23:\"fas fa-hand-point-right\";s:44:\"<i class=\"fas\">&#xf0a4;</i> hand-point-right\";s:20:\"fas fa-hand-point-up\";s:41:\"<i class=\"fas\">&#xf0a6;</i> hand-point-up\";s:19:\"fas fa-hand-pointer\";s:40:\"<i class=\"fas\">&#xf25a;</i> hand-pointer\";s:16:\"fas fa-hand-rock\";s:37:\"<i class=\"fas\">&#xf255;</i> hand-rock\";s:20:\"fas fa-hand-scissors\";s:41:\"<i class=\"fas\">&#xf257;</i> hand-scissors\";s:20:\"fas fa-hand-sparkles\";s:41:\"<i class=\"fas\">&#xe05d;</i> hand-sparkles\";s:17:\"fas fa-hand-spock\";s:38:\"<i class=\"fas\">&#xf259;</i> hand-spock\";s:12:\"fas fa-hands\";s:33:\"<i class=\"fas\">&#xf4c2;</i> hands\";s:20:\"fas fa-hands-helping\";s:41:\"<i class=\"fas\">&#xf4c4;</i> hands-helping\";s:17:\"fas fa-hands-wash\";s:38:\"<i class=\"fas\">&#xe05e;</i> hands-wash\";s:16:\"fas fa-handshake\";s:37:\"<i class=\"fas\">&#xf2b5;</i> handshake\";s:26:\"fas fa-handshake-alt-slash\";s:47:\"<i class=\"fas\">&#xe05f;</i> handshake-alt-slash\";s:22:\"fas fa-handshake-slash\";s:43:\"<i class=\"fas\">&#xe060;</i> handshake-slash\";s:15:\"fas fa-hanukiah\";s:36:\"<i class=\"fas\">&#xf6e6;</i> hanukiah\";s:15:\"fas fa-hard-hat\";s:36:\"<i class=\"fas\">&#xf807;</i> hard-hat\";s:14:\"fas fa-hashtag\";s:35:\"<i class=\"fas\">&#xf292;</i> hashtag\";s:17:\"fas fa-hat-cowboy\";s:38:\"<i class=\"fas\">&#xf8c0;</i> hat-cowboy\";s:22:\"fas fa-hat-cowboy-side\";s:43:\"<i class=\"fas\">&#xf8c1;</i> hat-cowboy-side\";s:17:\"fas fa-hat-wizard\";s:38:\"<i class=\"fas\">&#xf6e8;</i> hat-wizard\";s:10:\"fas fa-hdd\";s:31:\"<i class=\"fas\">&#xf0a0;</i> hdd\";s:22:\"fas fa-head-side-cough\";s:43:\"<i class=\"fas\">&#xe061;</i> head-side-cough\";s:28:\"fas fa-head-side-cough-slash\";s:49:\"<i class=\"fas\">&#xe062;</i> head-side-cough-slash\";s:21:\"fas fa-head-side-mask\";s:42:\"<i class=\"fas\">&#xe063;</i> head-side-mask\";s:22:\"fas fa-head-side-virus\";s:43:\"<i class=\"fas\">&#xe064;</i> head-side-virus\";s:14:\"fas fa-heading\";s:35:\"<i class=\"fas\">&#xf1dc;</i> heading\";s:17:\"fas fa-headphones\";s:38:\"<i class=\"fas\">&#xf025;</i> headphones\";s:21:\"fas fa-headphones-alt\";s:42:\"<i class=\"fas\">&#xf58f;</i> headphones-alt\";s:14:\"fas fa-headset\";s:35:\"<i class=\"fas\">&#xf590;</i> headset\";s:12:\"fas fa-heart\";s:33:\"<i class=\"fas\">&#xf004;</i> heart\";s:19:\"fas fa-heart-broken\";s:40:\"<i class=\"fas\">&#xf7a9;</i> heart-broken\";s:16:\"fas fa-heartbeat\";s:37:\"<i class=\"fas\">&#xf21e;</i> heartbeat\";s:17:\"fas fa-helicopter\";s:38:\"<i class=\"fas\">&#xf533;</i> helicopter\";s:18:\"fas fa-highlighter\";s:39:\"<i class=\"fas\">&#xf591;</i> highlighter\";s:13:\"fas fa-hiking\";s:34:\"<i class=\"fas\">&#xf6ec;</i> hiking\";s:12:\"fas fa-hippo\";s:33:\"<i class=\"fas\">&#xf6ed;</i> hippo\";s:14:\"fas fa-history\";s:35:\"<i class=\"fas\">&#xf1da;</i> history\";s:18:\"fas fa-hockey-puck\";s:39:\"<i class=\"fas\">&#xf453;</i> hockey-puck\";s:18:\"fas fa-holly-berry\";s:39:\"<i class=\"fas\">&#xf7aa;</i> holly-berry\";s:11:\"fas fa-home\";s:32:\"<i class=\"fas\">&#xf015;</i> home\";s:12:\"fas fa-horse\";s:33:\"<i class=\"fas\">&#xf6f0;</i> horse\";s:17:\"fas fa-horse-head\";s:38:\"<i class=\"fas\">&#xf7ab;</i> horse-head\";s:15:\"fas fa-hospital\";s:36:\"<i class=\"fas\">&#xf0f8;</i> hospital\";s:19:\"fas fa-hospital-alt\";s:40:\"<i class=\"fas\">&#xf47d;</i> hospital-alt\";s:22:\"fas fa-hospital-symbol\";s:43:\"<i class=\"fas\">&#xf47e;</i> hospital-symbol\";s:20:\"fas fa-hospital-user\";s:41:\"<i class=\"fas\">&#xf80d;</i> hospital-user\";s:14:\"fas fa-hot-tub\";s:35:\"<i class=\"fas\">&#xf593;</i> hot-tub\";s:13:\"fas fa-hotdog\";s:34:\"<i class=\"fas\">&#xf80f;</i> hotdog\";s:12:\"fas fa-hotel\";s:33:\"<i class=\"fas\">&#xf594;</i> hotel\";s:16:\"fas fa-hourglass\";s:37:\"<i class=\"fas\">&#xf254;</i> hourglass\";s:20:\"fas fa-hourglass-end\";s:41:\"<i class=\"fas\">&#xf253;</i> hourglass-end\";s:21:\"fas fa-hourglass-half\";s:42:\"<i class=\"fas\">&#xf252;</i> hourglass-half\";s:22:\"fas fa-hourglass-start\";s:43:\"<i class=\"fas\">&#xf251;</i> hourglass-start\";s:19:\"fas fa-house-damage\";s:40:\"<i class=\"fas\">&#xf6f1;</i> house-damage\";s:17:\"fas fa-house-user\";s:38:\"<i class=\"fas\">&#xe065;</i> house-user\";s:14:\"fas fa-hryvnia\";s:35:\"<i class=\"fas\">&#xf6f2;</i> hryvnia\";s:15:\"fas fa-i-cursor\";s:36:\"<i class=\"fas\">&#xf246;</i> i-cursor\";s:16:\"fas fa-ice-cream\";s:37:\"<i class=\"fas\">&#xf810;</i> ice-cream\";s:14:\"fas fa-icicles\";s:35:\"<i class=\"fas\">&#xf7ad;</i> icicles\";s:12:\"fas fa-icons\";s:33:\"<i class=\"fas\">&#xf86d;</i> icons\";s:15:\"fas fa-id-badge\";s:36:\"<i class=\"fas\">&#xf2c1;</i> id-badge\";s:14:\"fas fa-id-card\";s:35:\"<i class=\"fas\">&#xf2c2;</i> id-card\";s:18:\"fas fa-id-card-alt\";s:39:\"<i class=\"fas\">&#xf47f;</i> id-card-alt\";s:12:\"fas fa-igloo\";s:33:\"<i class=\"fas\">&#xf7ae;</i> igloo\";s:12:\"fas fa-image\";s:33:\"<i class=\"fas\">&#xf03e;</i> image\";s:13:\"fas fa-images\";s:34:\"<i class=\"fas\">&#xf302;</i> images\";s:12:\"fas fa-inbox\";s:33:\"<i class=\"fas\">&#xf01c;</i> inbox\";s:13:\"fas fa-indent\";s:34:\"<i class=\"fas\">&#xf03c;</i> indent\";s:15:\"fas fa-industry\";s:36:\"<i class=\"fas\">&#xf275;</i> industry\";s:15:\"fas fa-infinity\";s:36:\"<i class=\"fas\">&#xf534;</i> infinity\";s:11:\"fas fa-info\";s:32:\"<i class=\"fas\">&#xf129;</i> info\";s:18:\"fas fa-info-circle\";s:39:\"<i class=\"fas\">&#xf05a;</i> info-circle\";s:13:\"fas fa-italic\";s:34:\"<i class=\"fas\">&#xf033;</i> italic\";s:11:\"fas fa-jedi\";s:32:\"<i class=\"fas\">&#xf669;</i> jedi\";s:12:\"fas fa-joint\";s:33:\"<i class=\"fas\">&#xf595;</i> joint\";s:21:\"fas fa-journal-whills\";s:42:\"<i class=\"fas\">&#xf66a;</i> journal-whills\";s:12:\"fas fa-kaaba\";s:33:\"<i class=\"fas\">&#xf66b;</i> kaaba\";s:10:\"fas fa-key\";s:31:\"<i class=\"fas\">&#xf084;</i> key\";s:15:\"fas fa-keyboard\";s:36:\"<i class=\"fas\">&#xf11c;</i> keyboard\";s:13:\"fas fa-khanda\";s:34:\"<i class=\"fas\">&#xf66d;</i> khanda\";s:11:\"fas fa-kiss\";s:32:\"<i class=\"fas\">&#xf596;</i> kiss\";s:16:\"fas fa-kiss-beam\";s:37:\"<i class=\"fas\">&#xf597;</i> kiss-beam\";s:22:\"fas fa-kiss-wink-heart\";s:43:\"<i class=\"fas\">&#xf598;</i> kiss-wink-heart\";s:16:\"fas fa-kiwi-bird\";s:37:\"<i class=\"fas\">&#xf535;</i> kiwi-bird\";s:15:\"fas fa-landmark\";s:36:\"<i class=\"fas\">&#xf66f;</i> landmark\";s:15:\"fas fa-language\";s:36:\"<i class=\"fas\">&#xf1ab;</i> language\";s:13:\"fas fa-laptop\";s:34:\"<i class=\"fas\">&#xf109;</i> laptop\";s:18:\"fas fa-laptop-code\";s:39:\"<i class=\"fas\">&#xf5fc;</i> laptop-code\";s:19:\"fas fa-laptop-house\";s:40:\"<i class=\"fas\">&#xe066;</i> laptop-house\";s:21:\"fas fa-laptop-medical\";s:42:\"<i class=\"fas\">&#xf812;</i> laptop-medical\";s:12:\"fas fa-laugh\";s:33:\"<i class=\"fas\">&#xf599;</i> laugh\";s:17:\"fas fa-laugh-beam\";s:38:\"<i class=\"fas\">&#xf59a;</i> laugh-beam\";s:19:\"fas fa-laugh-squint\";s:40:\"<i class=\"fas\">&#xf59b;</i> laugh-squint\";s:17:\"fas fa-laugh-wink\";s:38:\"<i class=\"fas\">&#xf59c;</i> laugh-wink\";s:18:\"fas fa-layer-group\";s:39:\"<i class=\"fas\">&#xf5fd;</i> layer-group\";s:11:\"fas fa-leaf\";s:32:\"<i class=\"fas\">&#xf06c;</i> leaf\";s:12:\"fas fa-lemon\";s:33:\"<i class=\"fas\">&#xf094;</i> lemon\";s:16:\"fas fa-less-than\";s:37:\"<i class=\"fas\">&#xf536;</i> less-than\";s:22:\"fas fa-less-than-equal\";s:43:\"<i class=\"fas\">&#xf537;</i> less-than-equal\";s:21:\"fas fa-level-down-alt\";s:42:\"<i class=\"fas\">&#xf3be;</i> level-down-alt\";s:19:\"fas fa-level-up-alt\";s:40:\"<i class=\"fas\">&#xf3bf;</i> level-up-alt\";s:16:\"fas fa-life-ring\";s:37:\"<i class=\"fas\">&#xf1cd;</i> life-ring\";s:16:\"fas fa-lightbulb\";s:37:\"<i class=\"fas\">&#xf0eb;</i> lightbulb\";s:11:\"fas fa-link\";s:32:\"<i class=\"fas\">&#xf0c1;</i> link\";s:16:\"fas fa-lira-sign\";s:37:\"<i class=\"fas\">&#xf195;</i> lira-sign\";s:11:\"fas fa-list\";s:32:\"<i class=\"fas\">&#xf03a;</i> list\";s:15:\"fas fa-list-alt\";s:36:\"<i class=\"fas\">&#xf022;</i> list-alt\";s:14:\"fas fa-list-ol\";s:35:\"<i class=\"fas\">&#xf0cb;</i> list-ol\";s:14:\"fas fa-list-ul\";s:35:\"<i class=\"fas\">&#xf0ca;</i> list-ul\";s:21:\"fas fa-location-arrow\";s:42:\"<i class=\"fas\">&#xf124;</i> location-arrow\";s:11:\"fas fa-lock\";s:32:\"<i class=\"fas\">&#xf023;</i> lock\";s:16:\"fas fa-lock-open\";s:37:\"<i class=\"fas\">&#xf3c1;</i> lock-open\";s:26:\"fas fa-long-arrow-alt-down\";s:47:\"<i class=\"fas\">&#xf309;</i> long-arrow-alt-down\";s:26:\"fas fa-long-arrow-alt-left\";s:47:\"<i class=\"fas\">&#xf30a;</i> long-arrow-alt-left\";s:27:\"fas fa-long-arrow-alt-right\";s:48:\"<i class=\"fas\">&#xf30b;</i> long-arrow-alt-right\";s:24:\"fas fa-long-arrow-alt-up\";s:45:\"<i class=\"fas\">&#xf30c;</i> long-arrow-alt-up\";s:17:\"fas fa-low-vision\";s:38:\"<i class=\"fas\">&#xf2a8;</i> low-vision\";s:19:\"fas fa-luggage-cart\";s:40:\"<i class=\"fas\">&#xf59d;</i> luggage-cart\";s:12:\"fas fa-lungs\";s:33:\"<i class=\"fas\">&#xf604;</i> lungs\";s:18:\"fas fa-lungs-virus\";s:39:\"<i class=\"fas\">&#xe067;</i> lungs-virus\";s:12:\"fas fa-magic\";s:33:\"<i class=\"fas\">&#xf0d0;</i> magic\";s:13:\"fas fa-magnet\";s:34:\"<i class=\"fas\">&#xf076;</i> magnet\";s:16:\"fas fa-mail-bulk\";s:37:\"<i class=\"fas\">&#xf674;</i> mail-bulk\";s:11:\"fas fa-male\";s:32:\"<i class=\"fas\">&#xf183;</i> male\";s:10:\"fas fa-map\";s:31:\"<i class=\"fas\">&#xf279;</i> map\";s:17:\"fas fa-map-marked\";s:38:\"<i class=\"fas\">&#xf59f;</i> map-marked\";s:21:\"fas fa-map-marked-alt\";s:42:\"<i class=\"fas\">&#xf5a0;</i> map-marked-alt\";s:17:\"fas fa-map-marker\";s:38:\"<i class=\"fas\">&#xf041;</i> map-marker\";s:21:\"fas fa-map-marker-alt\";s:42:\"<i class=\"fas\">&#xf3c5;</i> map-marker-alt\";s:14:\"fas fa-map-pin\";s:35:\"<i class=\"fas\">&#xf276;</i> map-pin\";s:16:\"fas fa-map-signs\";s:37:\"<i class=\"fas\">&#xf277;</i> map-signs\";s:13:\"fas fa-marker\";s:34:\"<i class=\"fas\">&#xf5a1;</i> marker\";s:11:\"fas fa-mars\";s:32:\"<i class=\"fas\">&#xf222;</i> mars\";s:18:\"fas fa-mars-double\";s:39:\"<i class=\"fas\">&#xf227;</i> mars-double\";s:18:\"fas fa-mars-stroke\";s:39:\"<i class=\"fas\">&#xf229;</i> mars-stroke\";s:20:\"fas fa-mars-stroke-h\";s:41:\"<i class=\"fas\">&#xf22b;</i> mars-stroke-h\";s:20:\"fas fa-mars-stroke-v\";s:41:\"<i class=\"fas\">&#xf22a;</i> mars-stroke-v\";s:11:\"fas fa-mask\";s:32:\"<i class=\"fas\">&#xf6fa;</i> mask\";s:12:\"fas fa-medal\";s:33:\"<i class=\"fas\">&#xf5a2;</i> medal\";s:13:\"fas fa-medkit\";s:34:\"<i class=\"fas\">&#xf0fa;</i> medkit\";s:10:\"fas fa-meh\";s:31:\"<i class=\"fas\">&#xf11a;</i> meh\";s:16:\"fas fa-meh-blank\";s:37:\"<i class=\"fas\">&#xf5a4;</i> meh-blank\";s:23:\"fas fa-meh-rolling-eyes\";s:44:\"<i class=\"fas\">&#xf5a5;</i> meh-rolling-eyes\";s:13:\"fas fa-memory\";s:34:\"<i class=\"fas\">&#xf538;</i> memory\";s:14:\"fas fa-menorah\";s:35:\"<i class=\"fas\">&#xf676;</i> menorah\";s:14:\"fas fa-mercury\";s:35:\"<i class=\"fas\">&#xf223;</i> mercury\";s:13:\"fas fa-meteor\";s:34:\"<i class=\"fas\">&#xf753;</i> meteor\";s:16:\"fas fa-microchip\";s:37:\"<i class=\"fas\">&#xf2db;</i> microchip\";s:17:\"fas fa-microphone\";s:38:\"<i class=\"fas\">&#xf130;</i> microphone\";s:21:\"fas fa-microphone-alt\";s:42:\"<i class=\"fas\">&#xf3c9;</i> microphone-alt\";s:27:\"fas fa-microphone-alt-slash\";s:48:\"<i class=\"fas\">&#xf539;</i> microphone-alt-slash\";s:23:\"fas fa-microphone-slash\";s:44:\"<i class=\"fas\">&#xf131;</i> microphone-slash\";s:17:\"fas fa-microscope\";s:38:\"<i class=\"fas\">&#xf610;</i> microscope\";s:12:\"fas fa-minus\";s:33:\"<i class=\"fas\">&#xf068;</i> minus\";s:19:\"fas fa-minus-circle\";s:40:\"<i class=\"fas\">&#xf056;</i> minus-circle\";s:19:\"fas fa-minus-square\";s:40:\"<i class=\"fas\">&#xf146;</i> minus-square\";s:13:\"fas fa-mitten\";s:34:\"<i class=\"fas\">&#xf7b5;</i> mitten\";s:13:\"fas fa-mobile\";s:34:\"<i class=\"fas\">&#xf10b;</i> mobile\";s:17:\"fas fa-mobile-alt\";s:38:\"<i class=\"fas\">&#xf3cd;</i> mobile-alt\";s:17:\"fas fa-money-bill\";s:38:\"<i class=\"fas\">&#xf0d6;</i> money-bill\";s:21:\"fas fa-money-bill-alt\";s:42:\"<i class=\"fas\">&#xf3d1;</i> money-bill-alt\";s:22:\"fas fa-money-bill-wave\";s:43:\"<i class=\"fas\">&#xf53a;</i> money-bill-wave\";s:26:\"fas fa-money-bill-wave-alt\";s:47:\"<i class=\"fas\">&#xf53b;</i> money-bill-wave-alt\";s:18:\"fas fa-money-check\";s:39:\"<i class=\"fas\">&#xf53c;</i> money-check\";s:22:\"fas fa-money-check-alt\";s:43:\"<i class=\"fas\">&#xf53d;</i> money-check-alt\";s:15:\"fas fa-monument\";s:36:\"<i class=\"fas\">&#xf5a6;</i> monument\";s:11:\"fas fa-moon\";s:32:\"<i class=\"fas\">&#xf186;</i> moon\";s:20:\"fas fa-mortar-pestle\";s:41:\"<i class=\"fas\">&#xf5a7;</i> mortar-pestle\";s:13:\"fas fa-mosque\";s:34:\"<i class=\"fas\">&#xf678;</i> mosque\";s:17:\"fas fa-motorcycle\";s:38:\"<i class=\"fas\">&#xf21c;</i> motorcycle\";s:15:\"fas fa-mountain\";s:36:\"<i class=\"fas\">&#xf6fc;</i> mountain\";s:12:\"fas fa-mouse\";s:33:\"<i class=\"fas\">&#xf8cc;</i> mouse\";s:20:\"fas fa-mouse-pointer\";s:41:\"<i class=\"fas\">&#xf245;</i> mouse-pointer\";s:14:\"fas fa-mug-hot\";s:35:\"<i class=\"fas\">&#xf7b6;</i> mug-hot\";s:12:\"fas fa-music\";s:33:\"<i class=\"fas\">&#xf001;</i> music\";s:20:\"fas fa-network-wired\";s:41:\"<i class=\"fas\">&#xf6ff;</i> network-wired\";s:13:\"fas fa-neuter\";s:34:\"<i class=\"fas\">&#xf22c;</i> neuter\";s:16:\"fas fa-newspaper\";s:37:\"<i class=\"fas\">&#xf1ea;</i> newspaper\";s:16:\"fas fa-not-equal\";s:37:\"<i class=\"fas\">&#xf53e;</i> not-equal\";s:20:\"fas fa-notes-medical\";s:41:\"<i class=\"fas\">&#xf481;</i> notes-medical\";s:19:\"fas fa-object-group\";s:40:\"<i class=\"fas\">&#xf247;</i> object-group\";s:21:\"fas fa-object-ungroup\";s:42:\"<i class=\"fas\">&#xf248;</i> object-ungroup\";s:14:\"fas fa-oil-can\";s:35:\"<i class=\"fas\">&#xf613;</i> oil-can\";s:9:\"fas fa-om\";s:30:\"<i class=\"fas\">&#xf679;</i> om\";s:12:\"fas fa-otter\";s:33:\"<i class=\"fas\">&#xf700;</i> otter\";s:14:\"fas fa-outdent\";s:35:\"<i class=\"fas\">&#xf03b;</i> outdent\";s:12:\"fas fa-pager\";s:33:\"<i class=\"fas\">&#xf815;</i> pager\";s:18:\"fas fa-paint-brush\";s:39:\"<i class=\"fas\">&#xf1fc;</i> paint-brush\";s:19:\"fas fa-paint-roller\";s:40:\"<i class=\"fas\">&#xf5aa;</i> paint-roller\";s:14:\"fas fa-palette\";s:35:\"<i class=\"fas\">&#xf53f;</i> palette\";s:13:\"fas fa-pallet\";s:34:\"<i class=\"fas\">&#xf482;</i> pallet\";s:18:\"fas fa-paper-plane\";s:39:\"<i class=\"fas\">&#xf1d8;</i> paper-plane\";s:16:\"fas fa-paperclip\";s:37:\"<i class=\"fas\">&#xf0c6;</i> paperclip\";s:20:\"fas fa-parachute-box\";s:41:\"<i class=\"fas\">&#xf4cd;</i> parachute-box\";s:16:\"fas fa-paragraph\";s:37:\"<i class=\"fas\">&#xf1dd;</i> paragraph\";s:14:\"fas fa-parking\";s:35:\"<i class=\"fas\">&#xf540;</i> parking\";s:15:\"fas fa-passport\";s:36:\"<i class=\"fas\">&#xf5ab;</i> passport\";s:21:\"fas fa-pastafarianism\";s:42:\"<i class=\"fas\">&#xf67b;</i> pastafarianism\";s:12:\"fas fa-paste\";s:33:\"<i class=\"fas\">&#xf0ea;</i> paste\";s:12:\"fas fa-pause\";s:33:\"<i class=\"fas\">&#xf04c;</i> pause\";s:19:\"fas fa-pause-circle\";s:40:\"<i class=\"fas\">&#xf28b;</i> pause-circle\";s:10:\"fas fa-paw\";s:31:\"<i class=\"fas\">&#xf1b0;</i> paw\";s:12:\"fas fa-peace\";s:33:\"<i class=\"fas\">&#xf67c;</i> peace\";s:10:\"fas fa-pen\";s:31:\"<i class=\"fas\">&#xf304;</i> pen\";s:14:\"fas fa-pen-alt\";s:35:\"<i class=\"fas\">&#xf305;</i> pen-alt\";s:16:\"fas fa-pen-fancy\";s:37:\"<i class=\"fas\">&#xf5ac;</i> pen-fancy\";s:14:\"fas fa-pen-nib\";s:35:\"<i class=\"fas\">&#xf5ad;</i> pen-nib\";s:17:\"fas fa-pen-square\";s:38:\"<i class=\"fas\">&#xf14b;</i> pen-square\";s:17:\"fas fa-pencil-alt\";s:38:\"<i class=\"fas\">&#xf303;</i> pencil-alt\";s:19:\"fas fa-pencil-ruler\";s:40:\"<i class=\"fas\">&#xf5ae;</i> pencil-ruler\";s:20:\"fas fa-people-arrows\";s:41:\"<i class=\"fas\">&#xe068;</i> people-arrows\";s:19:\"fas fa-people-carry\";s:40:\"<i class=\"fas\">&#xf4ce;</i> people-carry\";s:17:\"fas fa-pepper-hot\";s:38:\"<i class=\"fas\">&#xf816;</i> pepper-hot\";s:14:\"fas fa-percent\";s:35:\"<i class=\"fas\">&#xf295;</i> percent\";s:17:\"fas fa-percentage\";s:38:\"<i class=\"fas\">&#xf541;</i> percentage\";s:19:\"fas fa-person-booth\";s:40:\"<i class=\"fas\">&#xf756;</i> person-booth\";s:12:\"fas fa-phone\";s:33:\"<i class=\"fas\">&#xf095;</i> phone\";s:16:\"fas fa-phone-alt\";s:37:\"<i class=\"fas\">&#xf879;</i> phone-alt\";s:18:\"fas fa-phone-slash\";s:39:\"<i class=\"fas\">&#xf3dd;</i> phone-slash\";s:19:\"fas fa-phone-square\";s:40:\"<i class=\"fas\">&#xf098;</i> phone-square\";s:23:\"fas fa-phone-square-alt\";s:44:\"<i class=\"fas\">&#xf87b;</i> phone-square-alt\";s:19:\"fas fa-phone-volume\";s:40:\"<i class=\"fas\">&#xf2a0;</i> phone-volume\";s:18:\"fas fa-photo-video\";s:39:\"<i class=\"fas\">&#xf87c;</i> photo-video\";s:17:\"fas fa-piggy-bank\";s:38:\"<i class=\"fas\">&#xf4d3;</i> piggy-bank\";s:12:\"fas fa-pills\";s:33:\"<i class=\"fas\">&#xf484;</i> pills\";s:18:\"fas fa-pizza-slice\";s:39:\"<i class=\"fas\">&#xf818;</i> pizza-slice\";s:23:\"fas fa-place-of-worship\";s:44:\"<i class=\"fas\">&#xf67f;</i> place-of-worship\";s:12:\"fas fa-plane\";s:33:\"<i class=\"fas\">&#xf072;</i> plane\";s:20:\"fas fa-plane-arrival\";s:41:\"<i class=\"fas\">&#xf5af;</i> plane-arrival\";s:22:\"fas fa-plane-departure\";s:43:\"<i class=\"fas\">&#xf5b0;</i> plane-departure\";s:18:\"fas fa-plane-slash\";s:39:\"<i class=\"fas\">&#xe069;</i> plane-slash\";s:11:\"fas fa-play\";s:32:\"<i class=\"fas\">&#xf04b;</i> play\";s:18:\"fas fa-play-circle\";s:39:\"<i class=\"fas\">&#xf144;</i> play-circle\";s:11:\"fas fa-plug\";s:32:\"<i class=\"fas\">&#xf1e6;</i> plug\";s:11:\"fas fa-plus\";s:32:\"<i class=\"fas\">&#xf067;</i> plus\";s:18:\"fas fa-plus-circle\";s:39:\"<i class=\"fas\">&#xf055;</i> plus-circle\";s:18:\"fas fa-plus-square\";s:39:\"<i class=\"fas\">&#xf0fe;</i> plus-square\";s:14:\"fas fa-podcast\";s:35:\"<i class=\"fas\">&#xf2ce;</i> podcast\";s:11:\"fas fa-poll\";s:32:\"<i class=\"fas\">&#xf681;</i> poll\";s:13:\"fas fa-poll-h\";s:34:\"<i class=\"fas\">&#xf682;</i> poll-h\";s:10:\"fas fa-poo\";s:31:\"<i class=\"fas\">&#xf2fe;</i> poo\";s:16:\"fas fa-poo-storm\";s:37:\"<i class=\"fas\">&#xf75a;</i> poo-storm\";s:11:\"fas fa-poop\";s:32:\"<i class=\"fas\">&#xf619;</i> poop\";s:15:\"fas fa-portrait\";s:36:\"<i class=\"fas\">&#xf3e0;</i> portrait\";s:17:\"fas fa-pound-sign\";s:38:\"<i class=\"fas\">&#xf154;</i> pound-sign\";s:16:\"fas fa-power-off\";s:37:\"<i class=\"fas\">&#xf011;</i> power-off\";s:11:\"fas fa-pray\";s:32:\"<i class=\"fas\">&#xf683;</i> pray\";s:20:\"fas fa-praying-hands\";s:41:\"<i class=\"fas\">&#xf684;</i> praying-hands\";s:19:\"fas fa-prescription\";s:40:\"<i class=\"fas\">&#xf5b1;</i> prescription\";s:26:\"fas fa-prescription-bottle\";s:47:\"<i class=\"fas\">&#xf485;</i> prescription-bottle\";s:30:\"fas fa-prescription-bottle-alt\";s:51:\"<i class=\"fas\">&#xf486;</i> prescription-bottle-alt\";s:12:\"fas fa-print\";s:33:\"<i class=\"fas\">&#xf02f;</i> print\";s:17:\"fas fa-procedures\";s:38:\"<i class=\"fas\">&#xf487;</i> procedures\";s:22:\"fas fa-project-diagram\";s:43:\"<i class=\"fas\">&#xf542;</i> project-diagram\";s:19:\"fas fa-pump-medical\";s:40:\"<i class=\"fas\">&#xe06a;</i> pump-medical\";s:16:\"fas fa-pump-soap\";s:37:\"<i class=\"fas\">&#xe06b;</i> pump-soap\";s:19:\"fas fa-puzzle-piece\";s:40:\"<i class=\"fas\">&#xf12e;</i> puzzle-piece\";s:13:\"fas fa-qrcode\";s:34:\"<i class=\"fas\">&#xf029;</i> qrcode\";s:15:\"fas fa-question\";s:36:\"<i class=\"fas\">&#xf128;</i> question\";s:22:\"fas fa-question-circle\";s:43:\"<i class=\"fas\">&#xf059;</i> question-circle\";s:16:\"fas fa-quidditch\";s:37:\"<i class=\"fas\">&#xf458;</i> quidditch\";s:17:\"fas fa-quote-left\";s:38:\"<i class=\"fas\">&#xf10d;</i> quote-left\";s:18:\"fas fa-quote-right\";s:39:\"<i class=\"fas\">&#xf10e;</i> quote-right\";s:12:\"fas fa-quran\";s:33:\"<i class=\"fas\">&#xf687;</i> quran\";s:16:\"fas fa-radiation\";s:37:\"<i class=\"fas\">&#xf7b9;</i> radiation\";s:20:\"fas fa-radiation-alt\";s:41:\"<i class=\"fas\">&#xf7ba;</i> radiation-alt\";s:14:\"fas fa-rainbow\";s:35:\"<i class=\"fas\">&#xf75b;</i> rainbow\";s:13:\"fas fa-random\";s:34:\"<i class=\"fas\">&#xf074;</i> random\";s:14:\"fas fa-receipt\";s:35:\"<i class=\"fas\">&#xf543;</i> receipt\";s:19:\"fas fa-record-vinyl\";s:40:\"<i class=\"fas\">&#xf8d9;</i> record-vinyl\";s:14:\"fas fa-recycle\";s:35:\"<i class=\"fas\">&#xf1b8;</i> recycle\";s:11:\"fas fa-redo\";s:32:\"<i class=\"fas\">&#xf01e;</i> redo\";s:15:\"fas fa-redo-alt\";s:36:\"<i class=\"fas\">&#xf2f9;</i> redo-alt\";s:17:\"fas fa-registered\";s:38:\"<i class=\"fas\">&#xf25d;</i> registered\";s:20:\"fas fa-remove-format\";s:41:\"<i class=\"fas\">&#xf87d;</i> remove-format\";s:12:\"fas fa-reply\";s:33:\"<i class=\"fas\">&#xf3e5;</i> reply\";s:16:\"fas fa-reply-all\";s:37:\"<i class=\"fas\">&#xf122;</i> reply-all\";s:17:\"fas fa-republican\";s:38:\"<i class=\"fas\">&#xf75e;</i> republican\";s:15:\"fas fa-restroom\";s:36:\"<i class=\"fas\">&#xf7bd;</i> restroom\";s:14:\"fas fa-retweet\";s:35:\"<i class=\"fas\">&#xf079;</i> retweet\";s:13:\"fas fa-ribbon\";s:34:\"<i class=\"fas\">&#xf4d6;</i> ribbon\";s:11:\"fas fa-ring\";s:32:\"<i class=\"fas\">&#xf70b;</i> ring\";s:11:\"fas fa-road\";s:32:\"<i class=\"fas\">&#xf018;</i> road\";s:12:\"fas fa-robot\";s:33:\"<i class=\"fas\">&#xf544;</i> robot\";s:13:\"fas fa-rocket\";s:34:\"<i class=\"fas\">&#xf135;</i> rocket\";s:12:\"fas fa-route\";s:33:\"<i class=\"fas\">&#xf4d7;</i> route\";s:10:\"fas fa-rss\";s:31:\"<i class=\"fas\">&#xf09e;</i> rss\";s:17:\"fas fa-rss-square\";s:38:\"<i class=\"fas\">&#xf143;</i> rss-square\";s:17:\"fas fa-ruble-sign\";s:38:\"<i class=\"fas\">&#xf158;</i> ruble-sign\";s:12:\"fas fa-ruler\";s:33:\"<i class=\"fas\">&#xf545;</i> ruler\";s:21:\"fas fa-ruler-combined\";s:42:\"<i class=\"fas\">&#xf546;</i> ruler-combined\";s:23:\"fas fa-ruler-horizontal\";s:44:\"<i class=\"fas\">&#xf547;</i> ruler-horizontal\";s:21:\"fas fa-ruler-vertical\";s:42:\"<i class=\"fas\">&#xf548;</i> ruler-vertical\";s:14:\"fas fa-running\";s:35:\"<i class=\"fas\">&#xf70c;</i> running\";s:17:\"fas fa-rupee-sign\";s:38:\"<i class=\"fas\">&#xf156;</i> rupee-sign\";s:14:\"fas fa-sad-cry\";s:35:\"<i class=\"fas\">&#xf5b3;</i> sad-cry\";s:15:\"fas fa-sad-tear\";s:36:\"<i class=\"fas\">&#xf5b4;</i> sad-tear\";s:16:\"fas fa-satellite\";s:37:\"<i class=\"fas\">&#xf7bf;</i> satellite\";s:21:\"fas fa-satellite-dish\";s:42:\"<i class=\"fas\">&#xf7c0;</i> satellite-dish\";s:11:\"fas fa-save\";s:32:\"<i class=\"fas\">&#xf0c7;</i> save\";s:13:\"fas fa-school\";s:34:\"<i class=\"fas\">&#xf549;</i> school\";s:18:\"fas fa-screwdriver\";s:39:\"<i class=\"fas\">&#xf54a;</i> screwdriver\";s:13:\"fas fa-scroll\";s:34:\"<i class=\"fas\">&#xf70e;</i> scroll\";s:14:\"fas fa-sd-card\";s:35:\"<i class=\"fas\">&#xf7c2;</i> sd-card\";s:13:\"fas fa-search\";s:34:\"<i class=\"fas\">&#xf002;</i> search\";s:20:\"fas fa-search-dollar\";s:41:\"<i class=\"fas\">&#xf688;</i> search-dollar\";s:22:\"fas fa-search-location\";s:43:\"<i class=\"fas\">&#xf689;</i> search-location\";s:19:\"fas fa-search-minus\";s:40:\"<i class=\"fas\">&#xf010;</i> search-minus\";s:18:\"fas fa-search-plus\";s:39:\"<i class=\"fas\">&#xf00e;</i> search-plus\";s:15:\"fas fa-seedling\";s:36:\"<i class=\"fas\">&#xf4d8;</i> seedling\";s:13:\"fas fa-server\";s:34:\"<i class=\"fas\">&#xf233;</i> server\";s:13:\"fas fa-shapes\";s:34:\"<i class=\"fas\">&#xf61f;</i> shapes\";s:12:\"fas fa-share\";s:33:\"<i class=\"fas\">&#xf064;</i> share\";s:16:\"fas fa-share-alt\";s:37:\"<i class=\"fas\">&#xf1e0;</i> share-alt\";s:23:\"fas fa-share-alt-square\";s:44:\"<i class=\"fas\">&#xf1e1;</i> share-alt-square\";s:19:\"fas fa-share-square\";s:40:\"<i class=\"fas\">&#xf14d;</i> share-square\";s:18:\"fas fa-shekel-sign\";s:39:\"<i class=\"fas\">&#xf20b;</i> shekel-sign\";s:17:\"fas fa-shield-alt\";s:38:\"<i class=\"fas\">&#xf3ed;</i> shield-alt\";s:19:\"fas fa-shield-virus\";s:40:\"<i class=\"fas\">&#xe06c;</i> shield-virus\";s:11:\"fas fa-ship\";s:32:\"<i class=\"fas\">&#xf21a;</i> ship\";s:20:\"fas fa-shipping-fast\";s:41:\"<i class=\"fas\">&#xf48b;</i> shipping-fast\";s:18:\"fas fa-shoe-prints\";s:39:\"<i class=\"fas\">&#xf54b;</i> shoe-prints\";s:19:\"fas fa-shopping-bag\";s:40:\"<i class=\"fas\">&#xf290;</i> shopping-bag\";s:22:\"fas fa-shopping-basket\";s:43:\"<i class=\"fas\">&#xf291;</i> shopping-basket\";s:20:\"fas fa-shopping-cart\";s:41:\"<i class=\"fas\">&#xf07a;</i> shopping-cart\";s:13:\"fas fa-shower\";s:34:\"<i class=\"fas\">&#xf2cc;</i> shower\";s:18:\"fas fa-shuttle-van\";s:39:\"<i class=\"fas\">&#xf5b6;</i> shuttle-van\";s:11:\"fas fa-sign\";s:32:\"<i class=\"fas\">&#xf4d9;</i> sign\";s:18:\"fas fa-sign-in-alt\";s:39:\"<i class=\"fas\">&#xf2f6;</i> sign-in-alt\";s:20:\"fas fa-sign-language\";s:41:\"<i class=\"fas\">&#xf2a7;</i> sign-language\";s:19:\"fas fa-sign-out-alt\";s:40:\"<i class=\"fas\">&#xf2f5;</i> sign-out-alt\";s:13:\"fas fa-signal\";s:34:\"<i class=\"fas\">&#xf012;</i> signal\";s:16:\"fas fa-signature\";s:37:\"<i class=\"fas\">&#xf5b7;</i> signature\";s:15:\"fas fa-sim-card\";s:36:\"<i class=\"fas\">&#xf7c4;</i> sim-card\";s:11:\"fas fa-sink\";s:32:\"<i class=\"fas\">&#xe06d;</i> sink\";s:14:\"fas fa-sitemap\";s:35:\"<i class=\"fas\">&#xf0e8;</i> sitemap\";s:14:\"fas fa-skating\";s:35:\"<i class=\"fas\">&#xf7c5;</i> skating\";s:13:\"fas fa-skiing\";s:34:\"<i class=\"fas\">&#xf7c9;</i> skiing\";s:20:\"fas fa-skiing-nordic\";s:41:\"<i class=\"fas\">&#xf7ca;</i> skiing-nordic\";s:12:\"fas fa-skull\";s:33:\"<i class=\"fas\">&#xf54c;</i> skull\";s:23:\"fas fa-skull-crossbones\";s:44:\"<i class=\"fas\">&#xf714;</i> skull-crossbones\";s:12:\"fas fa-slash\";s:33:\"<i class=\"fas\">&#xf715;</i> slash\";s:13:\"fas fa-sleigh\";s:34:\"<i class=\"fas\">&#xf7cc;</i> sleigh\";s:16:\"fas fa-sliders-h\";s:37:\"<i class=\"fas\">&#xf1de;</i> sliders-h\";s:12:\"fas fa-smile\";s:33:\"<i class=\"fas\">&#xf118;</i> smile\";s:17:\"fas fa-smile-beam\";s:38:\"<i class=\"fas\">&#xf5b8;</i> smile-beam\";s:17:\"fas fa-smile-wink\";s:38:\"<i class=\"fas\">&#xf4da;</i> smile-wink\";s:11:\"fas fa-smog\";s:32:\"<i class=\"fas\">&#xf75f;</i> smog\";s:14:\"fas fa-smoking\";s:35:\"<i class=\"fas\">&#xf48d;</i> smoking\";s:18:\"fas fa-smoking-ban\";s:39:\"<i class=\"fas\">&#xf54d;</i> smoking-ban\";s:10:\"fas fa-sms\";s:31:\"<i class=\"fas\">&#xf7cd;</i> sms\";s:19:\"fas fa-snowboarding\";s:40:\"<i class=\"fas\">&#xf7ce;</i> snowboarding\";s:16:\"fas fa-snowflake\";s:37:\"<i class=\"fas\">&#xf2dc;</i> snowflake\";s:14:\"fas fa-snowman\";s:35:\"<i class=\"fas\">&#xf7d0;</i> snowman\";s:15:\"fas fa-snowplow\";s:36:\"<i class=\"fas\">&#xf7d2;</i> snowplow\";s:11:\"fas fa-soap\";s:32:\"<i class=\"fas\">&#xe06e;</i> soap\";s:12:\"fas fa-socks\";s:33:\"<i class=\"fas\">&#xf696;</i> socks\";s:18:\"fas fa-solar-panel\";s:39:\"<i class=\"fas\">&#xf5ba;</i> solar-panel\";s:11:\"fas fa-sort\";s:32:\"<i class=\"fas\">&#xf0dc;</i> sort\";s:22:\"fas fa-sort-alpha-down\";s:43:\"<i class=\"fas\">&#xf15d;</i> sort-alpha-down\";s:26:\"fas fa-sort-alpha-down-alt\";s:47:\"<i class=\"fas\">&#xf881;</i> sort-alpha-down-alt\";s:20:\"fas fa-sort-alpha-up\";s:41:\"<i class=\"fas\">&#xf15e;</i> sort-alpha-up\";s:24:\"fas fa-sort-alpha-up-alt\";s:45:\"<i class=\"fas\">&#xf882;</i> sort-alpha-up-alt\";s:23:\"fas fa-sort-amount-down\";s:44:\"<i class=\"fas\">&#xf160;</i> sort-amount-down\";s:27:\"fas fa-sort-amount-down-alt\";s:48:\"<i class=\"fas\">&#xf884;</i> sort-amount-down-alt\";s:21:\"fas fa-sort-amount-up\";s:42:\"<i class=\"fas\">&#xf161;</i> sort-amount-up\";s:25:\"fas fa-sort-amount-up-alt\";s:46:\"<i class=\"fas\">&#xf885;</i> sort-amount-up-alt\";s:16:\"fas fa-sort-down\";s:37:\"<i class=\"fas\">&#xf0dd;</i> sort-down\";s:24:\"fas fa-sort-numeric-down\";s:45:\"<i class=\"fas\">&#xf162;</i> sort-numeric-down\";s:28:\"fas fa-sort-numeric-down-alt\";s:49:\"<i class=\"fas\">&#xf886;</i> sort-numeric-down-alt\";s:22:\"fas fa-sort-numeric-up\";s:43:\"<i class=\"fas\">&#xf163;</i> sort-numeric-up\";s:26:\"fas fa-sort-numeric-up-alt\";s:47:\"<i class=\"fas\">&#xf887;</i> sort-numeric-up-alt\";s:14:\"fas fa-sort-up\";s:35:\"<i class=\"fas\">&#xf0de;</i> sort-up\";s:10:\"fas fa-spa\";s:31:\"<i class=\"fas\">&#xf5bb;</i> spa\";s:20:\"fas fa-space-shuttle\";s:41:\"<i class=\"fas\">&#xf197;</i> space-shuttle\";s:18:\"fas fa-spell-check\";s:39:\"<i class=\"fas\">&#xf891;</i> spell-check\";s:13:\"fas fa-spider\";s:34:\"<i class=\"fas\">&#xf717;</i> spider\";s:14:\"fas fa-spinner\";s:35:\"<i class=\"fas\">&#xf110;</i> spinner\";s:14:\"fas fa-splotch\";s:35:\"<i class=\"fas\">&#xf5bc;</i> splotch\";s:16:\"fas fa-spray-can\";s:37:\"<i class=\"fas\">&#xf5bd;</i> spray-can\";s:13:\"fas fa-square\";s:34:\"<i class=\"fas\">&#xf0c8;</i> square\";s:18:\"fas fa-square-full\";s:39:\"<i class=\"fas\">&#xf45c;</i> square-full\";s:22:\"fas fa-square-root-alt\";s:43:\"<i class=\"fas\">&#xf698;</i> square-root-alt\";s:12:\"fas fa-stamp\";s:33:\"<i class=\"fas\">&#xf5bf;</i> stamp\";s:11:\"fas fa-star\";s:32:\"<i class=\"fas\">&#xf005;</i> star\";s:24:\"fas fa-star-and-crescent\";s:45:\"<i class=\"fas\">&#xf699;</i> star-and-crescent\";s:16:\"fas fa-star-half\";s:37:\"<i class=\"fas\">&#xf089;</i> star-half\";s:20:\"fas fa-star-half-alt\";s:41:\"<i class=\"fas\">&#xf5c0;</i> star-half-alt\";s:20:\"fas fa-star-of-david\";s:41:\"<i class=\"fas\">&#xf69a;</i> star-of-david\";s:19:\"fas fa-star-of-life\";s:40:\"<i class=\"fas\">&#xf621;</i> star-of-life\";s:20:\"fas fa-step-backward\";s:41:\"<i class=\"fas\">&#xf048;</i> step-backward\";s:19:\"fas fa-step-forward\";s:40:\"<i class=\"fas\">&#xf051;</i> step-forward\";s:18:\"fas fa-stethoscope\";s:39:\"<i class=\"fas\">&#xf0f1;</i> stethoscope\";s:18:\"fas fa-sticky-note\";s:39:\"<i class=\"fas\">&#xf249;</i> sticky-note\";s:11:\"fas fa-stop\";s:32:\"<i class=\"fas\">&#xf04d;</i> stop\";s:18:\"fas fa-stop-circle\";s:39:\"<i class=\"fas\">&#xf28d;</i> stop-circle\";s:16:\"fas fa-stopwatch\";s:37:\"<i class=\"fas\">&#xf2f2;</i> stopwatch\";s:19:\"fas fa-stopwatch-20\";s:40:\"<i class=\"fas\">&#xe06f;</i> stopwatch-20\";s:12:\"fas fa-store\";s:33:\"<i class=\"fas\">&#xf54e;</i> store\";s:16:\"fas fa-store-alt\";s:37:\"<i class=\"fas\">&#xf54f;</i> store-alt\";s:22:\"fas fa-store-alt-slash\";s:43:\"<i class=\"fas\">&#xe070;</i> store-alt-slash\";s:18:\"fas fa-store-slash\";s:39:\"<i class=\"fas\">&#xe071;</i> store-slash\";s:13:\"fas fa-stream\";s:34:\"<i class=\"fas\">&#xf550;</i> stream\";s:18:\"fas fa-street-view\";s:39:\"<i class=\"fas\">&#xf21d;</i> street-view\";s:20:\"fas fa-strikethrough\";s:41:\"<i class=\"fas\">&#xf0cc;</i> strikethrough\";s:18:\"fas fa-stroopwafel\";s:39:\"<i class=\"fas\">&#xf551;</i> stroopwafel\";s:16:\"fas fa-subscript\";s:37:\"<i class=\"fas\">&#xf12c;</i> subscript\";s:13:\"fas fa-subway\";s:34:\"<i class=\"fas\">&#xf239;</i> subway\";s:15:\"fas fa-suitcase\";s:36:\"<i class=\"fas\">&#xf0f2;</i> suitcase\";s:23:\"fas fa-suitcase-rolling\";s:44:\"<i class=\"fas\">&#xf5c1;</i> suitcase-rolling\";s:10:\"fas fa-sun\";s:31:\"<i class=\"fas\">&#xf185;</i> sun\";s:18:\"fas fa-superscript\";s:39:\"<i class=\"fas\">&#xf12b;</i> superscript\";s:15:\"fas fa-surprise\";s:36:\"<i class=\"fas\">&#xf5c2;</i> surprise\";s:17:\"fas fa-swatchbook\";s:38:\"<i class=\"fas\">&#xf5c3;</i> swatchbook\";s:14:\"fas fa-swimmer\";s:35:\"<i class=\"fas\">&#xf5c4;</i> swimmer\";s:20:\"fas fa-swimming-pool\";s:41:\"<i class=\"fas\">&#xf5c5;</i> swimming-pool\";s:16:\"fas fa-synagogue\";s:37:\"<i class=\"fas\">&#xf69b;</i> synagogue\";s:11:\"fas fa-sync\";s:32:\"<i class=\"fas\">&#xf021;</i> sync\";s:15:\"fas fa-sync-alt\";s:36:\"<i class=\"fas\">&#xf2f1;</i> sync-alt\";s:14:\"fas fa-syringe\";s:35:\"<i class=\"fas\">&#xf48e;</i> syringe\";s:12:\"fas fa-table\";s:33:\"<i class=\"fas\">&#xf0ce;</i> table\";s:19:\"fas fa-table-tennis\";s:40:\"<i class=\"fas\">&#xf45d;</i> table-tennis\";s:13:\"fas fa-tablet\";s:34:\"<i class=\"fas\">&#xf10a;</i> tablet\";s:17:\"fas fa-tablet-alt\";s:38:\"<i class=\"fas\">&#xf3fa;</i> tablet-alt\";s:14:\"fas fa-tablets\";s:35:\"<i class=\"fas\">&#xf490;</i> tablets\";s:21:\"fas fa-tachometer-alt\";s:42:\"<i class=\"fas\">&#xf3fd;</i> tachometer-alt\";s:10:\"fas fa-tag\";s:31:\"<i class=\"fas\">&#xf02b;</i> tag\";s:11:\"fas fa-tags\";s:32:\"<i class=\"fas\">&#xf02c;</i> tags\";s:11:\"fas fa-tape\";s:32:\"<i class=\"fas\">&#xf4db;</i> tape\";s:12:\"fas fa-tasks\";s:33:\"<i class=\"fas\">&#xf0ae;</i> tasks\";s:11:\"fas fa-taxi\";s:32:\"<i class=\"fas\">&#xf1ba;</i> taxi\";s:12:\"fas fa-teeth\";s:33:\"<i class=\"fas\">&#xf62e;</i> teeth\";s:17:\"fas fa-teeth-open\";s:38:\"<i class=\"fas\">&#xf62f;</i> teeth-open\";s:23:\"fas fa-temperature-high\";s:44:\"<i class=\"fas\">&#xf769;</i> temperature-high\";s:22:\"fas fa-temperature-low\";s:43:\"<i class=\"fas\">&#xf76b;</i> temperature-low\";s:12:\"fas fa-tenge\";s:33:\"<i class=\"fas\">&#xf7d7;</i> tenge\";s:15:\"fas fa-terminal\";s:36:\"<i class=\"fas\">&#xf120;</i> terminal\";s:18:\"fas fa-text-height\";s:39:\"<i class=\"fas\">&#xf034;</i> text-height\";s:17:\"fas fa-text-width\";s:38:\"<i class=\"fas\">&#xf035;</i> text-width\";s:9:\"fas fa-th\";s:30:\"<i class=\"fas\">&#xf00a;</i> th\";s:15:\"fas fa-th-large\";s:36:\"<i class=\"fas\">&#xf009;</i> th-large\";s:14:\"fas fa-th-list\";s:35:\"<i class=\"fas\">&#xf00b;</i> th-list\";s:20:\"fas fa-theater-masks\";s:41:\"<i class=\"fas\">&#xf630;</i> theater-masks\";s:18:\"fas fa-thermometer\";s:39:\"<i class=\"fas\">&#xf491;</i> thermometer\";s:24:\"fas fa-thermometer-empty\";s:45:\"<i class=\"fas\">&#xf2cb;</i> thermometer-empty\";s:23:\"fas fa-thermometer-full\";s:44:\"<i class=\"fas\">&#xf2c7;</i> thermometer-full\";s:23:\"fas fa-thermometer-half\";s:44:\"<i class=\"fas\">&#xf2c9;</i> thermometer-half\";s:26:\"fas fa-thermometer-quarter\";s:47:\"<i class=\"fas\">&#xf2ca;</i> thermometer-quarter\";s:33:\"fas fa-thermometer-three-quarters\";s:54:\"<i class=\"fas\">&#xf2c8;</i> thermometer-three-quarters\";s:18:\"fas fa-thumbs-down\";s:39:\"<i class=\"fas\">&#xf165;</i> thumbs-down\";s:16:\"fas fa-thumbs-up\";s:37:\"<i class=\"fas\">&#xf164;</i> thumbs-up\";s:16:\"fas fa-thumbtack\";s:37:\"<i class=\"fas\">&#xf08d;</i> thumbtack\";s:17:\"fas fa-ticket-alt\";s:38:\"<i class=\"fas\">&#xf3ff;</i> ticket-alt\";s:12:\"fas fa-times\";s:33:\"<i class=\"fas\">&#xf00d;</i> times\";s:19:\"fas fa-times-circle\";s:40:\"<i class=\"fas\">&#xf057;</i> times-circle\";s:11:\"fas fa-tint\";s:32:\"<i class=\"fas\">&#xf043;</i> tint\";s:17:\"fas fa-tint-slash\";s:38:\"<i class=\"fas\">&#xf5c7;</i> tint-slash\";s:12:\"fas fa-tired\";s:33:\"<i class=\"fas\">&#xf5c8;</i> tired\";s:17:\"fas fa-toggle-off\";s:38:\"<i class=\"fas\">&#xf204;</i> toggle-off\";s:16:\"fas fa-toggle-on\";s:37:\"<i class=\"fas\">&#xf205;</i> toggle-on\";s:13:\"fas fa-toilet\";s:34:\"<i class=\"fas\">&#xf7d8;</i> toilet\";s:19:\"fas fa-toilet-paper\";s:40:\"<i class=\"fas\">&#xf71e;</i> toilet-paper\";s:25:\"fas fa-toilet-paper-slash\";s:46:\"<i class=\"fas\">&#xe072;</i> toilet-paper-slash\";s:14:\"fas fa-toolbox\";s:35:\"<i class=\"fas\">&#xf552;</i> toolbox\";s:12:\"fas fa-tools\";s:33:\"<i class=\"fas\">&#xf7d9;</i> tools\";s:12:\"fas fa-tooth\";s:33:\"<i class=\"fas\">&#xf5c9;</i> tooth\";s:12:\"fas fa-torah\";s:33:\"<i class=\"fas\">&#xf6a0;</i> torah\";s:17:\"fas fa-torii-gate\";s:38:\"<i class=\"fas\">&#xf6a1;</i> torii-gate\";s:14:\"fas fa-tractor\";s:35:\"<i class=\"fas\">&#xf722;</i> tractor\";s:16:\"fas fa-trademark\";s:37:\"<i class=\"fas\">&#xf25c;</i> trademark\";s:20:\"fas fa-traffic-light\";s:41:\"<i class=\"fas\">&#xf637;</i> traffic-light\";s:14:\"fas fa-trailer\";s:35:\"<i class=\"fas\">&#xe041;</i> trailer\";s:12:\"fas fa-train\";s:33:\"<i class=\"fas\">&#xf238;</i> train\";s:11:\"fas fa-tram\";s:32:\"<i class=\"fas\">&#xf7da;</i> tram\";s:18:\"fas fa-transgender\";s:39:\"<i class=\"fas\">&#xf224;</i> transgender\";s:22:\"fas fa-transgender-alt\";s:43:\"<i class=\"fas\">&#xf225;</i> transgender-alt\";s:12:\"fas fa-trash\";s:33:\"<i class=\"fas\">&#xf1f8;</i> trash\";s:16:\"fas fa-trash-alt\";s:37:\"<i class=\"fas\">&#xf2ed;</i> trash-alt\";s:20:\"fas fa-trash-restore\";s:41:\"<i class=\"fas\">&#xf829;</i> trash-restore\";s:24:\"fas fa-trash-restore-alt\";s:45:\"<i class=\"fas\">&#xf82a;</i> trash-restore-alt\";s:11:\"fas fa-tree\";s:32:\"<i class=\"fas\">&#xf1bb;</i> tree\";s:13:\"fas fa-trophy\";s:34:\"<i class=\"fas\">&#xf091;</i> trophy\";s:12:\"fas fa-truck\";s:33:\"<i class=\"fas\">&#xf0d1;</i> truck\";s:20:\"fas fa-truck-loading\";s:41:\"<i class=\"fas\">&#xf4de;</i> truck-loading\";s:20:\"fas fa-truck-monster\";s:41:\"<i class=\"fas\">&#xf63b;</i> truck-monster\";s:19:\"fas fa-truck-moving\";s:40:\"<i class=\"fas\">&#xf4df;</i> truck-moving\";s:19:\"fas fa-truck-pickup\";s:40:\"<i class=\"fas\">&#xf63c;</i> truck-pickup\";s:13:\"fas fa-tshirt\";s:34:\"<i class=\"fas\">&#xf553;</i> tshirt\";s:10:\"fas fa-tty\";s:31:\"<i class=\"fas\">&#xf1e4;</i> tty\";s:9:\"fas fa-tv\";s:30:\"<i class=\"fas\">&#xf26c;</i> tv\";s:15:\"fas fa-umbrella\";s:36:\"<i class=\"fas\">&#xf0e9;</i> umbrella\";s:21:\"fas fa-umbrella-beach\";s:42:\"<i class=\"fas\">&#xf5ca;</i> umbrella-beach\";s:16:\"fas fa-underline\";s:37:\"<i class=\"fas\">&#xf0cd;</i> underline\";s:11:\"fas fa-undo\";s:32:\"<i class=\"fas\">&#xf0e2;</i> undo\";s:15:\"fas fa-undo-alt\";s:36:\"<i class=\"fas\">&#xf2ea;</i> undo-alt\";s:23:\"fas fa-universal-access\";s:44:\"<i class=\"fas\">&#xf29a;</i> universal-access\";s:17:\"fas fa-university\";s:38:\"<i class=\"fas\">&#xf19c;</i> university\";s:13:\"fas fa-unlink\";s:34:\"<i class=\"fas\">&#xf127;</i> unlink\";s:13:\"fas fa-unlock\";s:34:\"<i class=\"fas\">&#xf09c;</i> unlock\";s:17:\"fas fa-unlock-alt\";s:38:\"<i class=\"fas\">&#xf13e;</i> unlock-alt\";s:13:\"fas fa-upload\";s:34:\"<i class=\"fas\">&#xf093;</i> upload\";s:11:\"fas fa-user\";s:32:\"<i class=\"fas\">&#xf007;</i> user\";s:15:\"fas fa-user-alt\";s:36:\"<i class=\"fas\">&#xf406;</i> user-alt\";s:21:\"fas fa-user-alt-slash\";s:42:\"<i class=\"fas\">&#xf4fa;</i> user-alt-slash\";s:21:\"fas fa-user-astronaut\";s:42:\"<i class=\"fas\">&#xf4fb;</i> user-astronaut\";s:17:\"fas fa-user-check\";s:38:\"<i class=\"fas\">&#xf4fc;</i> user-check\";s:18:\"fas fa-user-circle\";s:39:\"<i class=\"fas\">&#xf2bd;</i> user-circle\";s:17:\"fas fa-user-clock\";s:38:\"<i class=\"fas\">&#xf4fd;</i> user-clock\";s:15:\"fas fa-user-cog\";s:36:\"<i class=\"fas\">&#xf4fe;</i> user-cog\";s:16:\"fas fa-user-edit\";s:37:\"<i class=\"fas\">&#xf4ff;</i> user-edit\";s:19:\"fas fa-user-friends\";s:40:\"<i class=\"fas\">&#xf500;</i> user-friends\";s:20:\"fas fa-user-graduate\";s:41:\"<i class=\"fas\">&#xf501;</i> user-graduate\";s:19:\"fas fa-user-injured\";s:40:\"<i class=\"fas\">&#xf728;</i> user-injured\";s:16:\"fas fa-user-lock\";s:37:\"<i class=\"fas\">&#xf502;</i> user-lock\";s:14:\"fas fa-user-md\";s:35:\"<i class=\"fas\">&#xf0f0;</i> user-md\";s:17:\"fas fa-user-minus\";s:38:\"<i class=\"fas\">&#xf503;</i> user-minus\";s:17:\"fas fa-user-ninja\";s:38:\"<i class=\"fas\">&#xf504;</i> user-ninja\";s:17:\"fas fa-user-nurse\";s:38:\"<i class=\"fas\">&#xf82f;</i> user-nurse\";s:16:\"fas fa-user-plus\";s:37:\"<i class=\"fas\">&#xf234;</i> user-plus\";s:18:\"fas fa-user-secret\";s:39:\"<i class=\"fas\">&#xf21b;</i> user-secret\";s:18:\"fas fa-user-shield\";s:39:\"<i class=\"fas\">&#xf505;</i> user-shield\";s:17:\"fas fa-user-slash\";s:38:\"<i class=\"fas\">&#xf506;</i> user-slash\";s:15:\"fas fa-user-tag\";s:36:\"<i class=\"fas\">&#xf507;</i> user-tag\";s:15:\"fas fa-user-tie\";s:36:\"<i class=\"fas\">&#xf508;</i> user-tie\";s:17:\"fas fa-user-times\";s:38:\"<i class=\"fas\">&#xf235;</i> user-times\";s:12:\"fas fa-users\";s:33:\"<i class=\"fas\">&#xf0c0;</i> users\";s:16:\"fas fa-users-cog\";s:37:\"<i class=\"fas\">&#xf509;</i> users-cog\";s:18:\"fas fa-users-slash\";s:39:\"<i class=\"fas\">&#xe073;</i> users-slash\";s:20:\"fas fa-utensil-spoon\";s:41:\"<i class=\"fas\">&#xf2e5;</i> utensil-spoon\";s:15:\"fas fa-utensils\";s:36:\"<i class=\"fas\">&#xf2e7;</i> utensils\";s:20:\"fas fa-vector-square\";s:41:\"<i class=\"fas\">&#xf5cb;</i> vector-square\";s:12:\"fas fa-venus\";s:33:\"<i class=\"fas\">&#xf221;</i> venus\";s:19:\"fas fa-venus-double\";s:40:\"<i class=\"fas\">&#xf226;</i> venus-double\";s:17:\"fas fa-venus-mars\";s:38:\"<i class=\"fas\">&#xf228;</i> venus-mars\";s:11:\"fas fa-vest\";s:32:\"<i class=\"fas\">&#xe085;</i> vest\";s:19:\"fas fa-vest-patches\";s:40:\"<i class=\"fas\">&#xe086;</i> vest-patches\";s:11:\"fas fa-vial\";s:32:\"<i class=\"fas\">&#xf492;</i> vial\";s:12:\"fas fa-vials\";s:33:\"<i class=\"fas\">&#xf493;</i> vials\";s:12:\"fas fa-video\";s:33:\"<i class=\"fas\">&#xf03d;</i> video\";s:18:\"fas fa-video-slash\";s:39:\"<i class=\"fas\">&#xf4e2;</i> video-slash\";s:13:\"fas fa-vihara\";s:34:\"<i class=\"fas\">&#xf6a7;</i> vihara\";s:12:\"fas fa-virus\";s:33:\"<i class=\"fas\">&#xe074;</i> virus\";s:18:\"fas fa-virus-slash\";s:39:\"<i class=\"fas\">&#xe075;</i> virus-slash\";s:14:\"fas fa-viruses\";s:35:\"<i class=\"fas\">&#xe076;</i> viruses\";s:16:\"fas fa-voicemail\";s:37:\"<i class=\"fas\">&#xf897;</i> voicemail\";s:22:\"fas fa-volleyball-ball\";s:43:\"<i class=\"fas\">&#xf45f;</i> volleyball-ball\";s:18:\"fas fa-volume-down\";s:39:\"<i class=\"fas\">&#xf027;</i> volume-down\";s:18:\"fas fa-volume-mute\";s:39:\"<i class=\"fas\">&#xf6a9;</i> volume-mute\";s:17:\"fas fa-volume-off\";s:38:\"<i class=\"fas\">&#xf026;</i> volume-off\";s:16:\"fas fa-volume-up\";s:37:\"<i class=\"fas\">&#xf028;</i> volume-up\";s:15:\"fas fa-vote-yea\";s:36:\"<i class=\"fas\">&#xf772;</i> vote-yea\";s:19:\"fas fa-vr-cardboard\";s:40:\"<i class=\"fas\">&#xf729;</i> vr-cardboard\";s:14:\"fas fa-walking\";s:35:\"<i class=\"fas\">&#xf554;</i> walking\";s:13:\"fas fa-wallet\";s:34:\"<i class=\"fas\">&#xf555;</i> wallet\";s:16:\"fas fa-warehouse\";s:37:\"<i class=\"fas\">&#xf494;</i> warehouse\";s:12:\"fas fa-water\";s:33:\"<i class=\"fas\">&#xf773;</i> water\";s:18:\"fas fa-wave-square\";s:39:\"<i class=\"fas\">&#xf83e;</i> wave-square\";s:13:\"fas fa-weight\";s:34:\"<i class=\"fas\">&#xf496;</i> weight\";s:21:\"fas fa-weight-hanging\";s:42:\"<i class=\"fas\">&#xf5cd;</i> weight-hanging\";s:17:\"fas fa-wheelchair\";s:38:\"<i class=\"fas\">&#xf193;</i> wheelchair\";s:11:\"fas fa-wifi\";s:32:\"<i class=\"fas\">&#xf1eb;</i> wifi\";s:11:\"fas fa-wind\";s:32:\"<i class=\"fas\">&#xf72e;</i> wind\";s:19:\"fas fa-window-close\";s:40:\"<i class=\"fas\">&#xf410;</i> window-close\";s:22:\"fas fa-window-maximize\";s:43:\"<i class=\"fas\">&#xf2d0;</i> window-maximize\";s:22:\"fas fa-window-minimize\";s:43:\"<i class=\"fas\">&#xf2d1;</i> window-minimize\";s:21:\"fas fa-window-restore\";s:42:\"<i class=\"fas\">&#xf2d2;</i> window-restore\";s:18:\"fas fa-wine-bottle\";s:39:\"<i class=\"fas\">&#xf72f;</i> wine-bottle\";s:17:\"fas fa-wine-glass\";s:38:\"<i class=\"fas\">&#xf4e3;</i> wine-glass\";s:21:\"fas fa-wine-glass-alt\";s:42:\"<i class=\"fas\">&#xf5ce;</i> wine-glass-alt\";s:15:\"fas fa-won-sign\";s:36:\"<i class=\"fas\">&#xf159;</i> won-sign\";s:13:\"fas fa-wrench\";s:34:\"<i class=\"fas\">&#xf0ad;</i> wrench\";s:12:\"fas fa-x-ray\";s:33:\"<i class=\"fas\">&#xf497;</i> x-ray\";s:15:\"fas fa-yen-sign\";s:36:\"<i class=\"fas\">&#xf157;</i> yen-sign\";s:15:\"fas fa-yin-yang\";s:36:\"<i class=\"fas\">&#xf6ad;</i> yin-yang\";}s:3:\"far\";a:152:{s:19:\"far fa-address-book\";s:40:\"<i class=\"far\">&#xf2b9;</i> address-book\";s:19:\"far fa-address-card\";s:40:\"<i class=\"far\">&#xf2bb;</i> address-card\";s:12:\"far fa-angry\";s:33:\"<i class=\"far\">&#xf556;</i> angry\";s:28:\"far fa-arrow-alt-circle-down\";s:49:\"<i class=\"far\">&#xf358;</i> arrow-alt-circle-down\";s:28:\"far fa-arrow-alt-circle-left\";s:49:\"<i class=\"far\">&#xf359;</i> arrow-alt-circle-left\";s:29:\"far fa-arrow-alt-circle-right\";s:50:\"<i class=\"far\">&#xf35a;</i> arrow-alt-circle-right\";s:26:\"far fa-arrow-alt-circle-up\";s:47:\"<i class=\"far\">&#xf35b;</i> arrow-alt-circle-up\";s:11:\"far fa-bell\";s:32:\"<i class=\"far\">&#xf0f3;</i> bell\";s:17:\"far fa-bell-slash\";s:38:\"<i class=\"far\">&#xf1f6;</i> bell-slash\";s:15:\"far fa-bookmark\";s:36:\"<i class=\"far\">&#xf02e;</i> bookmark\";s:15:\"far fa-building\";s:36:\"<i class=\"far\">&#xf1ad;</i> building\";s:15:\"far fa-calendar\";s:36:\"<i class=\"far\">&#xf133;</i> calendar\";s:19:\"far fa-calendar-alt\";s:40:\"<i class=\"far\">&#xf073;</i> calendar-alt\";s:21:\"far fa-calendar-check\";s:42:\"<i class=\"far\">&#xf274;</i> calendar-check\";s:21:\"far fa-calendar-minus\";s:42:\"<i class=\"far\">&#xf272;</i> calendar-minus\";s:20:\"far fa-calendar-plus\";s:41:\"<i class=\"far\">&#xf271;</i> calendar-plus\";s:21:\"far fa-calendar-times\";s:42:\"<i class=\"far\">&#xf273;</i> calendar-times\";s:24:\"far fa-caret-square-down\";s:45:\"<i class=\"far\">&#xf150;</i> caret-square-down\";s:24:\"far fa-caret-square-left\";s:45:\"<i class=\"far\">&#xf191;</i> caret-square-left\";s:25:\"far fa-caret-square-right\";s:46:\"<i class=\"far\">&#xf152;</i> caret-square-right\";s:22:\"far fa-caret-square-up\";s:43:\"<i class=\"far\">&#xf151;</i> caret-square-up\";s:16:\"far fa-chart-bar\";s:37:\"<i class=\"far\">&#xf080;</i> chart-bar\";s:19:\"far fa-check-circle\";s:40:\"<i class=\"far\">&#xf058;</i> check-circle\";s:19:\"far fa-check-square\";s:40:\"<i class=\"far\">&#xf14a;</i> check-square\";s:13:\"far fa-circle\";s:34:\"<i class=\"far\">&#xf111;</i> circle\";s:16:\"far fa-clipboard\";s:37:\"<i class=\"far\">&#xf328;</i> clipboard\";s:12:\"far fa-clock\";s:33:\"<i class=\"far\">&#xf017;</i> clock\";s:12:\"far fa-clone\";s:33:\"<i class=\"far\">&#xf24d;</i> clone\";s:24:\"far fa-closed-captioning\";s:45:\"<i class=\"far\">&#xf20a;</i> closed-captioning\";s:14:\"far fa-comment\";s:35:\"<i class=\"far\">&#xf075;</i> comment\";s:18:\"far fa-comment-alt\";s:39:\"<i class=\"far\">&#xf27a;</i> comment-alt\";s:19:\"far fa-comment-dots\";s:40:\"<i class=\"far\">&#xf4ad;</i> comment-dots\";s:15:\"far fa-comments\";s:36:\"<i class=\"far\">&#xf086;</i> comments\";s:14:\"far fa-compass\";s:35:\"<i class=\"far\">&#xf14e;</i> compass\";s:11:\"far fa-copy\";s:32:\"<i class=\"far\">&#xf0c5;</i> copy\";s:16:\"far fa-copyright\";s:37:\"<i class=\"far\">&#xf1f9;</i> copyright\";s:18:\"far fa-credit-card\";s:39:\"<i class=\"far\">&#xf09d;</i> credit-card\";s:12:\"far fa-dizzy\";s:33:\"<i class=\"far\">&#xf567;</i> dizzy\";s:17:\"far fa-dot-circle\";s:38:\"<i class=\"far\">&#xf192;</i> dot-circle\";s:11:\"far fa-edit\";s:32:\"<i class=\"far\">&#xf044;</i> edit\";s:15:\"far fa-envelope\";s:36:\"<i class=\"far\">&#xf0e0;</i> envelope\";s:20:\"far fa-envelope-open\";s:41:\"<i class=\"far\">&#xf2b6;</i> envelope-open\";s:10:\"far fa-eye\";s:31:\"<i class=\"far\">&#xf06e;</i> eye\";s:16:\"far fa-eye-slash\";s:37:\"<i class=\"far\">&#xf070;</i> eye-slash\";s:11:\"far fa-file\";s:32:\"<i class=\"far\">&#xf15b;</i> file\";s:15:\"far fa-file-alt\";s:36:\"<i class=\"far\">&#xf15c;</i> file-alt\";s:19:\"far fa-file-archive\";s:40:\"<i class=\"far\">&#xf1c6;</i> file-archive\";s:17:\"far fa-file-audio\";s:38:\"<i class=\"far\">&#xf1c7;</i> file-audio\";s:16:\"far fa-file-code\";s:37:\"<i class=\"far\">&#xf1c9;</i> file-code\";s:17:\"far fa-file-excel\";s:38:\"<i class=\"far\">&#xf1c3;</i> file-excel\";s:17:\"far fa-file-image\";s:38:\"<i class=\"far\">&#xf1c5;</i> file-image\";s:15:\"far fa-file-pdf\";s:36:\"<i class=\"far\">&#xf1c1;</i> file-pdf\";s:22:\"far fa-file-powerpoint\";s:43:\"<i class=\"far\">&#xf1c4;</i> file-powerpoint\";s:17:\"far fa-file-video\";s:38:\"<i class=\"far\">&#xf1c8;</i> file-video\";s:16:\"far fa-file-word\";s:37:\"<i class=\"far\">&#xf1c2;</i> file-word\";s:11:\"far fa-flag\";s:32:\"<i class=\"far\">&#xf024;</i> flag\";s:14:\"far fa-flushed\";s:35:\"<i class=\"far\">&#xf579;</i> flushed\";s:13:\"far fa-folder\";s:34:\"<i class=\"far\">&#xf07b;</i> folder\";s:18:\"far fa-folder-open\";s:39:\"<i class=\"far\">&#xf07c;</i> folder-open\";s:29:\"far fa-font-awesome-logo-full\";s:50:\"<i class=\"far\">&#xf4e6;</i> font-awesome-logo-full\";s:12:\"far fa-frown\";s:33:\"<i class=\"far\">&#xf119;</i> frown\";s:17:\"far fa-frown-open\";s:38:\"<i class=\"far\">&#xf57a;</i> frown-open\";s:13:\"far fa-futbol\";s:34:\"<i class=\"far\">&#xf1e3;</i> futbol\";s:10:\"far fa-gem\";s:31:\"<i class=\"far\">&#xf3a5;</i> gem\";s:14:\"far fa-grimace\";s:35:\"<i class=\"far\">&#xf57f;</i> grimace\";s:11:\"far fa-grin\";s:32:\"<i class=\"far\">&#xf580;</i> grin\";s:15:\"far fa-grin-alt\";s:36:\"<i class=\"far\">&#xf581;</i> grin-alt\";s:16:\"far fa-grin-beam\";s:37:\"<i class=\"far\">&#xf582;</i> grin-beam\";s:22:\"far fa-grin-beam-sweat\";s:43:\"<i class=\"far\">&#xf583;</i> grin-beam-sweat\";s:18:\"far fa-grin-hearts\";s:39:\"<i class=\"far\">&#xf584;</i> grin-hearts\";s:18:\"far fa-grin-squint\";s:39:\"<i class=\"far\">&#xf585;</i> grin-squint\";s:24:\"far fa-grin-squint-tears\";s:45:\"<i class=\"far\">&#xf586;</i> grin-squint-tears\";s:17:\"far fa-grin-stars\";s:38:\"<i class=\"far\">&#xf587;</i> grin-stars\";s:17:\"far fa-grin-tears\";s:38:\"<i class=\"far\">&#xf588;</i> grin-tears\";s:18:\"far fa-grin-tongue\";s:39:\"<i class=\"far\">&#xf589;</i> grin-tongue\";s:25:\"far fa-grin-tongue-squint\";s:46:\"<i class=\"far\">&#xf58a;</i> grin-tongue-squint\";s:23:\"far fa-grin-tongue-wink\";s:44:\"<i class=\"far\">&#xf58b;</i> grin-tongue-wink\";s:16:\"far fa-grin-wink\";s:37:\"<i class=\"far\">&#xf58c;</i> grin-wink\";s:18:\"far fa-hand-lizard\";s:39:\"<i class=\"far\">&#xf258;</i> hand-lizard\";s:17:\"far fa-hand-paper\";s:38:\"<i class=\"far\">&#xf256;</i> hand-paper\";s:17:\"far fa-hand-peace\";s:38:\"<i class=\"far\">&#xf25b;</i> hand-peace\";s:22:\"far fa-hand-point-down\";s:43:\"<i class=\"far\">&#xf0a7;</i> hand-point-down\";s:22:\"far fa-hand-point-left\";s:43:\"<i class=\"far\">&#xf0a5;</i> hand-point-left\";s:23:\"far fa-hand-point-right\";s:44:\"<i class=\"far\">&#xf0a4;</i> hand-point-right\";s:20:\"far fa-hand-point-up\";s:41:\"<i class=\"far\">&#xf0a6;</i> hand-point-up\";s:19:\"far fa-hand-pointer\";s:40:\"<i class=\"far\">&#xf25a;</i> hand-pointer\";s:16:\"far fa-hand-rock\";s:37:\"<i class=\"far\">&#xf255;</i> hand-rock\";s:20:\"far fa-hand-scissors\";s:41:\"<i class=\"far\">&#xf257;</i> hand-scissors\";s:17:\"far fa-hand-spock\";s:38:\"<i class=\"far\">&#xf259;</i> hand-spock\";s:16:\"far fa-handshake\";s:37:\"<i class=\"far\">&#xf2b5;</i> handshake\";s:10:\"far fa-hdd\";s:31:\"<i class=\"far\">&#xf0a0;</i> hdd\";s:12:\"far fa-heart\";s:33:\"<i class=\"far\">&#xf004;</i> heart\";s:15:\"far fa-hospital\";s:36:\"<i class=\"far\">&#xf0f8;</i> hospital\";s:16:\"far fa-hourglass\";s:37:\"<i class=\"far\">&#xf254;</i> hourglass\";s:15:\"far fa-id-badge\";s:36:\"<i class=\"far\">&#xf2c1;</i> id-badge\";s:14:\"far fa-id-card\";s:35:\"<i class=\"far\">&#xf2c2;</i> id-card\";s:12:\"far fa-image\";s:33:\"<i class=\"far\">&#xf03e;</i> image\";s:13:\"far fa-images\";s:34:\"<i class=\"far\">&#xf302;</i> images\";s:15:\"far fa-keyboard\";s:36:\"<i class=\"far\">&#xf11c;</i> keyboard\";s:11:\"far fa-kiss\";s:32:\"<i class=\"far\">&#xf596;</i> kiss\";s:16:\"far fa-kiss-beam\";s:37:\"<i class=\"far\">&#xf597;</i> kiss-beam\";s:22:\"far fa-kiss-wink-heart\";s:43:\"<i class=\"far\">&#xf598;</i> kiss-wink-heart\";s:12:\"far fa-laugh\";s:33:\"<i class=\"far\">&#xf599;</i> laugh\";s:17:\"far fa-laugh-beam\";s:38:\"<i class=\"far\">&#xf59a;</i> laugh-beam\";s:19:\"far fa-laugh-squint\";s:40:\"<i class=\"far\">&#xf59b;</i> laugh-squint\";s:17:\"far fa-laugh-wink\";s:38:\"<i class=\"far\">&#xf59c;</i> laugh-wink\";s:12:\"far fa-lemon\";s:33:\"<i class=\"far\">&#xf094;</i> lemon\";s:16:\"far fa-life-ring\";s:37:\"<i class=\"far\">&#xf1cd;</i> life-ring\";s:16:\"far fa-lightbulb\";s:37:\"<i class=\"far\">&#xf0eb;</i> lightbulb\";s:15:\"far fa-list-alt\";s:36:\"<i class=\"far\">&#xf022;</i> list-alt\";s:10:\"far fa-map\";s:31:\"<i class=\"far\">&#xf279;</i> map\";s:10:\"far fa-meh\";s:31:\"<i class=\"far\">&#xf11a;</i> meh\";s:16:\"far fa-meh-blank\";s:37:\"<i class=\"far\">&#xf5a4;</i> meh-blank\";s:23:\"far fa-meh-rolling-eyes\";s:44:\"<i class=\"far\">&#xf5a5;</i> meh-rolling-eyes\";s:19:\"far fa-minus-square\";s:40:\"<i class=\"far\">&#xf146;</i> minus-square\";s:21:\"far fa-money-bill-alt\";s:42:\"<i class=\"far\">&#xf3d1;</i> money-bill-alt\";s:11:\"far fa-moon\";s:32:\"<i class=\"far\">&#xf186;</i> moon\";s:16:\"far fa-newspaper\";s:37:\"<i class=\"far\">&#xf1ea;</i> newspaper\";s:19:\"far fa-object-group\";s:40:\"<i class=\"far\">&#xf247;</i> object-group\";s:21:\"far fa-object-ungroup\";s:42:\"<i class=\"far\">&#xf248;</i> object-ungroup\";s:18:\"far fa-paper-plane\";s:39:\"<i class=\"far\">&#xf1d8;</i> paper-plane\";s:19:\"far fa-pause-circle\";s:40:\"<i class=\"far\">&#xf28b;</i> pause-circle\";s:18:\"far fa-play-circle\";s:39:\"<i class=\"far\">&#xf144;</i> play-circle\";s:18:\"far fa-plus-square\";s:39:\"<i class=\"far\">&#xf0fe;</i> plus-square\";s:22:\"far fa-question-circle\";s:43:\"<i class=\"far\">&#xf059;</i> question-circle\";s:17:\"far fa-registered\";s:38:\"<i class=\"far\">&#xf25d;</i> registered\";s:14:\"far fa-sad-cry\";s:35:\"<i class=\"far\">&#xf5b3;</i> sad-cry\";s:15:\"far fa-sad-tear\";s:36:\"<i class=\"far\">&#xf5b4;</i> sad-tear\";s:11:\"far fa-save\";s:32:\"<i class=\"far\">&#xf0c7;</i> save\";s:19:\"far fa-share-square\";s:40:\"<i class=\"far\">&#xf14d;</i> share-square\";s:12:\"far fa-smile\";s:33:\"<i class=\"far\">&#xf118;</i> smile\";s:17:\"far fa-smile-beam\";s:38:\"<i class=\"far\">&#xf5b8;</i> smile-beam\";s:17:\"far fa-smile-wink\";s:38:\"<i class=\"far\">&#xf4da;</i> smile-wink\";s:16:\"far fa-snowflake\";s:37:\"<i class=\"far\">&#xf2dc;</i> snowflake\";s:13:\"far fa-square\";s:34:\"<i class=\"far\">&#xf0c8;</i> square\";s:11:\"far fa-star\";s:32:\"<i class=\"far\">&#xf005;</i> star\";s:16:\"far fa-star-half\";s:37:\"<i class=\"far\">&#xf089;</i> star-half\";s:18:\"far fa-sticky-note\";s:39:\"<i class=\"far\">&#xf249;</i> sticky-note\";s:18:\"far fa-stop-circle\";s:39:\"<i class=\"far\">&#xf28d;</i> stop-circle\";s:10:\"far fa-sun\";s:31:\"<i class=\"far\">&#xf185;</i> sun\";s:15:\"far fa-surprise\";s:36:\"<i class=\"far\">&#xf5c2;</i> surprise\";s:18:\"far fa-thumbs-down\";s:39:\"<i class=\"far\">&#xf165;</i> thumbs-down\";s:16:\"far fa-thumbs-up\";s:37:\"<i class=\"far\">&#xf164;</i> thumbs-up\";s:19:\"far fa-times-circle\";s:40:\"<i class=\"far\">&#xf057;</i> times-circle\";s:12:\"far fa-tired\";s:33:\"<i class=\"far\">&#xf5c8;</i> tired\";s:16:\"far fa-trash-alt\";s:37:\"<i class=\"far\">&#xf2ed;</i> trash-alt\";s:11:\"far fa-user\";s:32:\"<i class=\"far\">&#xf007;</i> user\";s:18:\"far fa-user-circle\";s:39:\"<i class=\"far\">&#xf2bd;</i> user-circle\";s:19:\"far fa-window-close\";s:40:\"<i class=\"far\">&#xf410;</i> window-close\";s:22:\"far fa-window-maximize\";s:43:\"<i class=\"far\">&#xf2d0;</i> window-maximize\";s:22:\"far fa-window-minimize\";s:43:\"<i class=\"far\">&#xf2d1;</i> window-minimize\";s:21:\"far fa-window-restore\";s:42:\"<i class=\"far\">&#xf2d2;</i> window-restore\";}}s:7:\"details\";a:3:{s:3:\"fab\";a:457:{s:12:\"fab fa-500px\";a:2:{s:3:\"hex\";s:5:\"\\f26e\";s:7:\"unicode\";s:8:\"&#xf26e;\";}s:22:\"fab fa-accessible-icon\";a:2:{s:3:\"hex\";s:5:\"\\f368\";s:7:\"unicode\";s:8:\"&#xf368;\";}s:15:\"fab fa-accusoft\";a:2:{s:3:\"hex\";s:5:\"\\f369\";s:7:\"unicode\";s:8:\"&#xf369;\";}s:32:\"fab fa-acquisitions-incorporated\";a:2:{s:3:\"hex\";s:5:\"\\f6af\";s:7:\"unicode\";s:8:\"&#xf6af;\";}s:10:\"fab fa-adn\";a:2:{s:3:\"hex\";s:5:\"\\f170\";s:7:\"unicode\";s:8:\"&#xf170;\";}s:15:\"fab fa-adversal\";a:2:{s:3:\"hex\";s:5:\"\\f36a\";s:7:\"unicode\";s:8:\"&#xf36a;\";}s:21:\"fab fa-affiliatetheme\";a:2:{s:3:\"hex\";s:5:\"\\f36b\";s:7:\"unicode\";s:8:\"&#xf36b;\";}s:13:\"fab fa-airbnb\";a:2:{s:3:\"hex\";s:5:\"\\f834\";s:7:\"unicode\";s:8:\"&#xf834;\";}s:14:\"fab fa-algolia\";a:2:{s:3:\"hex\";s:5:\"\\f36c\";s:7:\"unicode\";s:8:\"&#xf36c;\";}s:13:\"fab fa-alipay\";a:2:{s:3:\"hex\";s:5:\"\\f642\";s:7:\"unicode\";s:8:\"&#xf642;\";}s:13:\"fab fa-amazon\";a:2:{s:3:\"hex\";s:5:\"\\f270\";s:7:\"unicode\";s:8:\"&#xf270;\";}s:17:\"fab fa-amazon-pay\";a:2:{s:3:\"hex\";s:5:\"\\f42c\";s:7:\"unicode\";s:8:\"&#xf42c;\";}s:13:\"fab fa-amilia\";a:2:{s:3:\"hex\";s:5:\"\\f36d\";s:7:\"unicode\";s:8:\"&#xf36d;\";}s:14:\"fab fa-android\";a:2:{s:3:\"hex\";s:5:\"\\f17b\";s:7:\"unicode\";s:8:\"&#xf17b;\";}s:16:\"fab fa-angellist\";a:2:{s:3:\"hex\";s:5:\"\\f209\";s:7:\"unicode\";s:8:\"&#xf209;\";}s:20:\"fab fa-angrycreative\";a:2:{s:3:\"hex\";s:5:\"\\f36e\";s:7:\"unicode\";s:8:\"&#xf36e;\";}s:14:\"fab fa-angular\";a:2:{s:3:\"hex\";s:5:\"\\f420\";s:7:\"unicode\";s:8:\"&#xf420;\";}s:16:\"fab fa-app-store\";a:2:{s:3:\"hex\";s:5:\"\\f36f\";s:7:\"unicode\";s:8:\"&#xf36f;\";}s:20:\"fab fa-app-store-ios\";a:2:{s:3:\"hex\";s:5:\"\\f370\";s:7:\"unicode\";s:8:\"&#xf370;\";}s:12:\"fab fa-apper\";a:2:{s:3:\"hex\";s:5:\"\\f371\";s:7:\"unicode\";s:8:\"&#xf371;\";}s:12:\"fab fa-apple\";a:2:{s:3:\"hex\";s:5:\"\\f179\";s:7:\"unicode\";s:8:\"&#xf179;\";}s:16:\"fab fa-apple-pay\";a:2:{s:3:\"hex\";s:5:\"\\f415\";s:7:\"unicode\";s:8:\"&#xf415;\";}s:17:\"fab fa-artstation\";a:2:{s:3:\"hex\";s:5:\"\\f77a\";s:7:\"unicode\";s:8:\"&#xf77a;\";}s:17:\"fab fa-asymmetrik\";a:2:{s:3:\"hex\";s:5:\"\\f372\";s:7:\"unicode\";s:8:\"&#xf372;\";}s:16:\"fab fa-atlassian\";a:2:{s:3:\"hex\";s:5:\"\\f77b\";s:7:\"unicode\";s:8:\"&#xf77b;\";}s:14:\"fab fa-audible\";a:2:{s:3:\"hex\";s:5:\"\\f373\";s:7:\"unicode\";s:8:\"&#xf373;\";}s:19:\"fab fa-autoprefixer\";a:2:{s:3:\"hex\";s:5:\"\\f41c\";s:7:\"unicode\";s:8:\"&#xf41c;\";}s:14:\"fab fa-avianex\";a:2:{s:3:\"hex\";s:5:\"\\f374\";s:7:\"unicode\";s:8:\"&#xf374;\";}s:13:\"fab fa-aviato\";a:2:{s:3:\"hex\";s:5:\"\\f421\";s:7:\"unicode\";s:8:\"&#xf421;\";}s:10:\"fab fa-aws\";a:2:{s:3:\"hex\";s:5:\"\\f375\";s:7:\"unicode\";s:8:\"&#xf375;\";}s:15:\"fab fa-bandcamp\";a:2:{s:3:\"hex\";s:5:\"\\f2d5\";s:7:\"unicode\";s:8:\"&#xf2d5;\";}s:17:\"fab fa-battle-net\";a:2:{s:3:\"hex\";s:5:\"\\f835\";s:7:\"unicode\";s:8:\"&#xf835;\";}s:14:\"fab fa-behance\";a:2:{s:3:\"hex\";s:5:\"\\f1b4\";s:7:\"unicode\";s:8:\"&#xf1b4;\";}s:21:\"fab fa-behance-square\";a:2:{s:3:\"hex\";s:5:\"\\f1b5\";s:7:\"unicode\";s:8:\"&#xf1b5;\";}s:16:\"fab fa-bimobject\";a:2:{s:3:\"hex\";s:5:\"\\f378\";s:7:\"unicode\";s:8:\"&#xf378;\";}s:16:\"fab fa-bitbucket\";a:2:{s:3:\"hex\";s:5:\"\\f171\";s:7:\"unicode\";s:8:\"&#xf171;\";}s:14:\"fab fa-bitcoin\";a:2:{s:3:\"hex\";s:5:\"\\f379\";s:7:\"unicode\";s:8:\"&#xf379;\";}s:11:\"fab fa-bity\";a:2:{s:3:\"hex\";s:5:\"\\f37a\";s:7:\"unicode\";s:8:\"&#xf37a;\";}s:16:\"fab fa-black-tie\";a:2:{s:3:\"hex\";s:5:\"\\f27e\";s:7:\"unicode\";s:8:\"&#xf27e;\";}s:17:\"fab fa-blackberry\";a:2:{s:3:\"hex\";s:5:\"\\f37b\";s:7:\"unicode\";s:8:\"&#xf37b;\";}s:14:\"fab fa-blogger\";a:2:{s:3:\"hex\";s:5:\"\\f37c\";s:7:\"unicode\";s:8:\"&#xf37c;\";}s:16:\"fab fa-blogger-b\";a:2:{s:3:\"hex\";s:5:\"\\f37d\";s:7:\"unicode\";s:8:\"&#xf37d;\";}s:16:\"fab fa-bluetooth\";a:2:{s:3:\"hex\";s:5:\"\\f293\";s:7:\"unicode\";s:8:\"&#xf293;\";}s:18:\"fab fa-bluetooth-b\";a:2:{s:3:\"hex\";s:5:\"\\f294\";s:7:\"unicode\";s:8:\"&#xf294;\";}s:16:\"fab fa-bootstrap\";a:2:{s:3:\"hex\";s:5:\"\\f836\";s:7:\"unicode\";s:8:\"&#xf836;\";}s:10:\"fab fa-btc\";a:2:{s:3:\"hex\";s:5:\"\\f15a\";s:7:\"unicode\";s:8:\"&#xf15a;\";}s:13:\"fab fa-buffer\";a:2:{s:3:\"hex\";s:5:\"\\f837\";s:7:\"unicode\";s:8:\"&#xf837;\";}s:23:\"fab fa-buromobelexperte\";a:2:{s:3:\"hex\";s:5:\"\\f37f\";s:7:\"unicode\";s:8:\"&#xf37f;\";}s:18:\"fab fa-buy-n-large\";a:2:{s:3:\"hex\";s:5:\"\\f8a6\";s:7:\"unicode\";s:8:\"&#xf8a6;\";}s:17:\"fab fa-buysellads\";a:2:{s:3:\"hex\";s:5:\"\\f20d\";s:7:\"unicode\";s:8:\"&#xf20d;\";}s:26:\"fab fa-canadian-maple-leaf\";a:2:{s:3:\"hex\";s:5:\"\\f785\";s:7:\"unicode\";s:8:\"&#xf785;\";}s:20:\"fab fa-cc-amazon-pay\";a:2:{s:3:\"hex\";s:5:\"\\f42d\";s:7:\"unicode\";s:8:\"&#xf42d;\";}s:14:\"fab fa-cc-amex\";a:2:{s:3:\"hex\";s:5:\"\\f1f3\";s:7:\"unicode\";s:8:\"&#xf1f3;\";}s:19:\"fab fa-cc-apple-pay\";a:2:{s:3:\"hex\";s:5:\"\\f416\";s:7:\"unicode\";s:8:\"&#xf416;\";}s:21:\"fab fa-cc-diners-club\";a:2:{s:3:\"hex\";s:5:\"\\f24c\";s:7:\"unicode\";s:8:\"&#xf24c;\";}s:18:\"fab fa-cc-discover\";a:2:{s:3:\"hex\";s:5:\"\\f1f2\";s:7:\"unicode\";s:8:\"&#xf1f2;\";}s:13:\"fab fa-cc-jcb\";a:2:{s:3:\"hex\";s:5:\"\\f24b\";s:7:\"unicode\";s:8:\"&#xf24b;\";}s:20:\"fab fa-cc-mastercard\";a:2:{s:3:\"hex\";s:5:\"\\f1f1\";s:7:\"unicode\";s:8:\"&#xf1f1;\";}s:16:\"fab fa-cc-paypal\";a:2:{s:3:\"hex\";s:5:\"\\f1f4\";s:7:\"unicode\";s:8:\"&#xf1f4;\";}s:16:\"fab fa-cc-stripe\";a:2:{s:3:\"hex\";s:5:\"\\f1f5\";s:7:\"unicode\";s:8:\"&#xf1f5;\";}s:14:\"fab fa-cc-visa\";a:2:{s:3:\"hex\";s:5:\"\\f1f0\";s:7:\"unicode\";s:8:\"&#xf1f0;\";}s:17:\"fab fa-centercode\";a:2:{s:3:\"hex\";s:5:\"\\f380\";s:7:\"unicode\";s:8:\"&#xf380;\";}s:13:\"fab fa-centos\";a:2:{s:3:\"hex\";s:5:\"\\f789\";s:7:\"unicode\";s:8:\"&#xf789;\";}s:13:\"fab fa-chrome\";a:2:{s:3:\"hex\";s:5:\"\\f268\";s:7:\"unicode\";s:8:\"&#xf268;\";}s:17:\"fab fa-chromecast\";a:2:{s:3:\"hex\";s:5:\"\\f838\";s:7:\"unicode\";s:8:\"&#xf838;\";}s:17:\"fab fa-cloudflare\";a:2:{s:3:\"hex\";s:5:\"\\e07d\";s:7:\"unicode\";s:8:\"&#xe07d;\";}s:17:\"fab fa-cloudscale\";a:2:{s:3:\"hex\";s:5:\"\\f383\";s:7:\"unicode\";s:8:\"&#xf383;\";}s:17:\"fab fa-cloudsmith\";a:2:{s:3:\"hex\";s:5:\"\\f384\";s:7:\"unicode\";s:8:\"&#xf384;\";}s:19:\"fab fa-cloudversify\";a:2:{s:3:\"hex\";s:5:\"\\f385\";s:7:\"unicode\";s:8:\"&#xf385;\";}s:14:\"fab fa-codepen\";a:2:{s:3:\"hex\";s:5:\"\\f1cb\";s:7:\"unicode\";s:8:\"&#xf1cb;\";}s:15:\"fab fa-codiepie\";a:2:{s:3:\"hex\";s:5:\"\\f284\";s:7:\"unicode\";s:8:\"&#xf284;\";}s:17:\"fab fa-confluence\";a:2:{s:3:\"hex\";s:5:\"\\f78d\";s:7:\"unicode\";s:8:\"&#xf78d;\";}s:21:\"fab fa-connectdevelop\";a:2:{s:3:\"hex\";s:5:\"\\f20e\";s:7:\"unicode\";s:8:\"&#xf20e;\";}s:13:\"fab fa-contao\";a:2:{s:3:\"hex\";s:5:\"\\f26d\";s:7:\"unicode\";s:8:\"&#xf26d;\";}s:20:\"fab fa-cotton-bureau\";a:2:{s:3:\"hex\";s:5:\"\\f89e\";s:7:\"unicode\";s:8:\"&#xf89e;\";}s:13:\"fab fa-cpanel\";a:2:{s:3:\"hex\";s:5:\"\\f388\";s:7:\"unicode\";s:8:\"&#xf388;\";}s:23:\"fab fa-creative-commons\";a:2:{s:3:\"hex\";s:5:\"\\f25e\";s:7:\"unicode\";s:8:\"&#xf25e;\";}s:26:\"fab fa-creative-commons-by\";a:2:{s:3:\"hex\";s:5:\"\\f4e7\";s:7:\"unicode\";s:8:\"&#xf4e7;\";}s:26:\"fab fa-creative-commons-nc\";a:2:{s:3:\"hex\";s:5:\"\\f4e8\";s:7:\"unicode\";s:8:\"&#xf4e8;\";}s:29:\"fab fa-creative-commons-nc-eu\";a:2:{s:3:\"hex\";s:5:\"\\f4e9\";s:7:\"unicode\";s:8:\"&#xf4e9;\";}s:29:\"fab fa-creative-commons-nc-jp\";a:2:{s:3:\"hex\";s:5:\"\\f4ea\";s:7:\"unicode\";s:8:\"&#xf4ea;\";}s:26:\"fab fa-creative-commons-nd\";a:2:{s:3:\"hex\";s:5:\"\\f4eb\";s:7:\"unicode\";s:8:\"&#xf4eb;\";}s:26:\"fab fa-creative-commons-pd\";a:2:{s:3:\"hex\";s:5:\"\\f4ec\";s:7:\"unicode\";s:8:\"&#xf4ec;\";}s:30:\"fab fa-creative-commons-pd-alt\";a:2:{s:3:\"hex\";s:5:\"\\f4ed\";s:7:\"unicode\";s:8:\"&#xf4ed;\";}s:29:\"fab fa-creative-commons-remix\";a:2:{s:3:\"hex\";s:5:\"\\f4ee\";s:7:\"unicode\";s:8:\"&#xf4ee;\";}s:26:\"fab fa-creative-commons-sa\";a:2:{s:3:\"hex\";s:5:\"\\f4ef\";s:7:\"unicode\";s:8:\"&#xf4ef;\";}s:32:\"fab fa-creative-commons-sampling\";a:2:{s:3:\"hex\";s:5:\"\\f4f0\";s:7:\"unicode\";s:8:\"&#xf4f0;\";}s:37:\"fab fa-creative-commons-sampling-plus\";a:2:{s:3:\"hex\";s:5:\"\\f4f1\";s:7:\"unicode\";s:8:\"&#xf4f1;\";}s:29:\"fab fa-creative-commons-share\";a:2:{s:3:\"hex\";s:5:\"\\f4f2\";s:7:\"unicode\";s:8:\"&#xf4f2;\";}s:28:\"fab fa-creative-commons-zero\";a:2:{s:3:\"hex\";s:5:\"\\f4f3\";s:7:\"unicode\";s:8:\"&#xf4f3;\";}s:20:\"fab fa-critical-role\";a:2:{s:3:\"hex\";s:5:\"\\f6c9\";s:7:\"unicode\";s:8:\"&#xf6c9;\";}s:11:\"fab fa-css3\";a:2:{s:3:\"hex\";s:5:\"\\f13c\";s:7:\"unicode\";s:8:\"&#xf13c;\";}s:15:\"fab fa-css3-alt\";a:2:{s:3:\"hex\";s:5:\"\\f38b\";s:7:\"unicode\";s:8:\"&#xf38b;\";}s:17:\"fab fa-cuttlefish\";a:2:{s:3:\"hex\";s:5:\"\\f38c\";s:7:\"unicode\";s:8:\"&#xf38c;\";}s:14:\"fab fa-d-and-d\";a:2:{s:3:\"hex\";s:5:\"\\f38d\";s:7:\"unicode\";s:8:\"&#xf38d;\";}s:21:\"fab fa-d-and-d-beyond\";a:2:{s:3:\"hex\";s:5:\"\\f6ca\";s:7:\"unicode\";s:8:\"&#xf6ca;\";}s:18:\"fab fa-dailymotion\";a:2:{s:3:\"hex\";s:5:\"\\e052\";s:7:\"unicode\";s:8:\"&#xe052;\";}s:15:\"fab fa-dashcube\";a:2:{s:3:\"hex\";s:5:\"\\f210\";s:7:\"unicode\";s:8:\"&#xf210;\";}s:13:\"fab fa-deezer\";a:2:{s:3:\"hex\";s:5:\"\\e077\";s:7:\"unicode\";s:8:\"&#xe077;\";}s:16:\"fab fa-delicious\";a:2:{s:3:\"hex\";s:5:\"\\f1a5\";s:7:\"unicode\";s:8:\"&#xf1a5;\";}s:16:\"fab fa-deploydog\";a:2:{s:3:\"hex\";s:5:\"\\f38e\";s:7:\"unicode\";s:8:\"&#xf38e;\";}s:14:\"fab fa-deskpro\";a:2:{s:3:\"hex\";s:5:\"\\f38f\";s:7:\"unicode\";s:8:\"&#xf38f;\";}s:10:\"fab fa-dev\";a:2:{s:3:\"hex\";s:5:\"\\f6cc\";s:7:\"unicode\";s:8:\"&#xf6cc;\";}s:17:\"fab fa-deviantart\";a:2:{s:3:\"hex\";s:5:\"\\f1bd\";s:7:\"unicode\";s:8:\"&#xf1bd;\";}s:10:\"fab fa-dhl\";a:2:{s:3:\"hex\";s:5:\"\\f790\";s:7:\"unicode\";s:8:\"&#xf790;\";}s:15:\"fab fa-diaspora\";a:2:{s:3:\"hex\";s:5:\"\\f791\";s:7:\"unicode\";s:8:\"&#xf791;\";}s:11:\"fab fa-digg\";a:2:{s:3:\"hex\";s:5:\"\\f1a6\";s:7:\"unicode\";s:8:\"&#xf1a6;\";}s:20:\"fab fa-digital-ocean\";a:2:{s:3:\"hex\";s:5:\"\\f391\";s:7:\"unicode\";s:8:\"&#xf391;\";}s:14:\"fab fa-discord\";a:2:{s:3:\"hex\";s:5:\"\\f392\";s:7:\"unicode\";s:8:\"&#xf392;\";}s:16:\"fab fa-discourse\";a:2:{s:3:\"hex\";s:5:\"\\f393\";s:7:\"unicode\";s:8:\"&#xf393;\";}s:13:\"fab fa-dochub\";a:2:{s:3:\"hex\";s:5:\"\\f394\";s:7:\"unicode\";s:8:\"&#xf394;\";}s:13:\"fab fa-docker\";a:2:{s:3:\"hex\";s:5:\"\\f395\";s:7:\"unicode\";s:8:\"&#xf395;\";}s:20:\"fab fa-draft2digital\";a:2:{s:3:\"hex\";s:5:\"\\f396\";s:7:\"unicode\";s:8:\"&#xf396;\";}s:15:\"fab fa-dribbble\";a:2:{s:3:\"hex\";s:5:\"\\f17d\";s:7:\"unicode\";s:8:\"&#xf17d;\";}s:22:\"fab fa-dribbble-square\";a:2:{s:3:\"hex\";s:5:\"\\f397\";s:7:\"unicode\";s:8:\"&#xf397;\";}s:14:\"fab fa-dropbox\";a:2:{s:3:\"hex\";s:5:\"\\f16b\";s:7:\"unicode\";s:8:\"&#xf16b;\";}s:13:\"fab fa-drupal\";a:2:{s:3:\"hex\";s:5:\"\\f1a9\";s:7:\"unicode\";s:8:\"&#xf1a9;\";}s:13:\"fab fa-dyalog\";a:2:{s:3:\"hex\";s:5:\"\\f399\";s:7:\"unicode\";s:8:\"&#xf399;\";}s:17:\"fab fa-earlybirds\";a:2:{s:3:\"hex\";s:5:\"\\f39a\";s:7:\"unicode\";s:8:\"&#xf39a;\";}s:11:\"fab fa-ebay\";a:2:{s:3:\"hex\";s:5:\"\\f4f4\";s:7:\"unicode\";s:8:\"&#xf4f4;\";}s:11:\"fab fa-edge\";a:2:{s:3:\"hex\";s:5:\"\\f282\";s:7:\"unicode\";s:8:\"&#xf282;\";}s:18:\"fab fa-edge-legacy\";a:2:{s:3:\"hex\";s:5:\"\\e078\";s:7:\"unicode\";s:8:\"&#xe078;\";}s:16:\"fab fa-elementor\";a:2:{s:3:\"hex\";s:5:\"\\f430\";s:7:\"unicode\";s:8:\"&#xf430;\";}s:11:\"fab fa-ello\";a:2:{s:3:\"hex\";s:5:\"\\f5f1\";s:7:\"unicode\";s:8:\"&#xf5f1;\";}s:12:\"fab fa-ember\";a:2:{s:3:\"hex\";s:5:\"\\f423\";s:7:\"unicode\";s:8:\"&#xf423;\";}s:13:\"fab fa-empire\";a:2:{s:3:\"hex\";s:5:\"\\f1d1\";s:7:\"unicode\";s:8:\"&#xf1d1;\";}s:13:\"fab fa-envira\";a:2:{s:3:\"hex\";s:5:\"\\f299\";s:7:\"unicode\";s:8:\"&#xf299;\";}s:13:\"fab fa-erlang\";a:2:{s:3:\"hex\";s:5:\"\\f39d\";s:7:\"unicode\";s:8:\"&#xf39d;\";}s:15:\"fab fa-ethereum\";a:2:{s:3:\"hex\";s:5:\"\\f42e\";s:7:\"unicode\";s:8:\"&#xf42e;\";}s:11:\"fab fa-etsy\";a:2:{s:3:\"hex\";s:5:\"\\f2d7\";s:7:\"unicode\";s:8:\"&#xf2d7;\";}s:15:\"fab fa-evernote\";a:2:{s:3:\"hex\";s:5:\"\\f839\";s:7:\"unicode\";s:8:\"&#xf839;\";}s:19:\"fab fa-expeditedssl\";a:2:{s:3:\"hex\";s:5:\"\\f23e\";s:7:\"unicode\";s:8:\"&#xf23e;\";}s:15:\"fab fa-facebook\";a:2:{s:3:\"hex\";s:5:\"\\f09a\";s:7:\"unicode\";s:8:\"&#xf09a;\";}s:17:\"fab fa-facebook-f\";a:2:{s:3:\"hex\";s:5:\"\\f39e\";s:7:\"unicode\";s:8:\"&#xf39e;\";}s:25:\"fab fa-facebook-messenger\";a:2:{s:3:\"hex\";s:5:\"\\f39f\";s:7:\"unicode\";s:8:\"&#xf39f;\";}s:22:\"fab fa-facebook-square\";a:2:{s:3:\"hex\";s:5:\"\\f082\";s:7:\"unicode\";s:8:\"&#xf082;\";}s:27:\"fab fa-fantasy-flight-games\";a:2:{s:3:\"hex\";s:5:\"\\f6dc\";s:7:\"unicode\";s:8:\"&#xf6dc;\";}s:12:\"fab fa-fedex\";a:2:{s:3:\"hex\";s:5:\"\\f797\";s:7:\"unicode\";s:8:\"&#xf797;\";}s:13:\"fab fa-fedora\";a:2:{s:3:\"hex\";s:5:\"\\f798\";s:7:\"unicode\";s:8:\"&#xf798;\";}s:12:\"fab fa-figma\";a:2:{s:3:\"hex\";s:5:\"\\f799\";s:7:\"unicode\";s:8:\"&#xf799;\";}s:14:\"fab fa-firefox\";a:2:{s:3:\"hex\";s:5:\"\\f269\";s:7:\"unicode\";s:8:\"&#xf269;\";}s:22:\"fab fa-firefox-browser\";a:2:{s:3:\"hex\";s:5:\"\\e007\";s:7:\"unicode\";s:8:\"&#xe007;\";}s:18:\"fab fa-first-order\";a:2:{s:3:\"hex\";s:5:\"\\f2b0\";s:7:\"unicode\";s:8:\"&#xf2b0;\";}s:22:\"fab fa-first-order-alt\";a:2:{s:3:\"hex\";s:5:\"\\f50a\";s:7:\"unicode\";s:8:\"&#xf50a;\";}s:17:\"fab fa-firstdraft\";a:2:{s:3:\"hex\";s:5:\"\\f3a1\";s:7:\"unicode\";s:8:\"&#xf3a1;\";}s:13:\"fab fa-flickr\";a:2:{s:3:\"hex\";s:5:\"\\f16e\";s:7:\"unicode\";s:8:\"&#xf16e;\";}s:16:\"fab fa-flipboard\";a:2:{s:3:\"hex\";s:5:\"\\f44d\";s:7:\"unicode\";s:8:\"&#xf44d;\";}s:10:\"fab fa-fly\";a:2:{s:3:\"hex\";s:5:\"\\f417\";s:7:\"unicode\";s:8:\"&#xf417;\";}s:19:\"fab fa-font-awesome\";a:2:{s:3:\"hex\";s:5:\"\\f2b4\";s:7:\"unicode\";s:8:\"&#xf2b4;\";}s:23:\"fab fa-font-awesome-alt\";a:2:{s:3:\"hex\";s:5:\"\\f35c\";s:7:\"unicode\";s:8:\"&#xf35c;\";}s:24:\"fab fa-font-awesome-flag\";a:2:{s:3:\"hex\";s:5:\"\\f425\";s:7:\"unicode\";s:8:\"&#xf425;\";}s:29:\"fab fa-font-awesome-logo-full\";a:2:{s:3:\"hex\";s:5:\"\\f4e6\";s:7:\"unicode\";s:8:\"&#xf4e6;\";}s:16:\"fab fa-fonticons\";a:2:{s:3:\"hex\";s:5:\"\\f280\";s:7:\"unicode\";s:8:\"&#xf280;\";}s:19:\"fab fa-fonticons-fi\";a:2:{s:3:\"hex\";s:5:\"\\f3a2\";s:7:\"unicode\";s:8:\"&#xf3a2;\";}s:19:\"fab fa-fort-awesome\";a:2:{s:3:\"hex\";s:5:\"\\f286\";s:7:\"unicode\";s:8:\"&#xf286;\";}s:23:\"fab fa-fort-awesome-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3a3\";s:7:\"unicode\";s:8:\"&#xf3a3;\";}s:15:\"fab fa-forumbee\";a:2:{s:3:\"hex\";s:5:\"\\f211\";s:7:\"unicode\";s:8:\"&#xf211;\";}s:17:\"fab fa-foursquare\";a:2:{s:3:\"hex\";s:5:\"\\f180\";s:7:\"unicode\";s:8:\"&#xf180;\";}s:21:\"fab fa-free-code-camp\";a:2:{s:3:\"hex\";s:5:\"\\f2c5\";s:7:\"unicode\";s:8:\"&#xf2c5;\";}s:14:\"fab fa-freebsd\";a:2:{s:3:\"hex\";s:5:\"\\f3a4\";s:7:\"unicode\";s:8:\"&#xf3a4;\";}s:14:\"fab fa-fulcrum\";a:2:{s:3:\"hex\";s:5:\"\\f50b\";s:7:\"unicode\";s:8:\"&#xf50b;\";}s:24:\"fab fa-galactic-republic\";a:2:{s:3:\"hex\";s:5:\"\\f50c\";s:7:\"unicode\";s:8:\"&#xf50c;\";}s:22:\"fab fa-galactic-senate\";a:2:{s:3:\"hex\";s:5:\"\\f50d\";s:7:\"unicode\";s:8:\"&#xf50d;\";}s:17:\"fab fa-get-pocket\";a:2:{s:3:\"hex\";s:5:\"\\f265\";s:7:\"unicode\";s:8:\"&#xf265;\";}s:9:\"fab fa-gg\";a:2:{s:3:\"hex\";s:5:\"\\f260\";s:7:\"unicode\";s:8:\"&#xf260;\";}s:16:\"fab fa-gg-circle\";a:2:{s:3:\"hex\";s:5:\"\\f261\";s:7:\"unicode\";s:8:\"&#xf261;\";}s:10:\"fab fa-git\";a:2:{s:3:\"hex\";s:5:\"\\f1d3\";s:7:\"unicode\";s:8:\"&#xf1d3;\";}s:14:\"fab fa-git-alt\";a:2:{s:3:\"hex\";s:5:\"\\f841\";s:7:\"unicode\";s:8:\"&#xf841;\";}s:17:\"fab fa-git-square\";a:2:{s:3:\"hex\";s:5:\"\\f1d2\";s:7:\"unicode\";s:8:\"&#xf1d2;\";}s:13:\"fab fa-github\";a:2:{s:3:\"hex\";s:5:\"\\f09b\";s:7:\"unicode\";s:8:\"&#xf09b;\";}s:17:\"fab fa-github-alt\";a:2:{s:3:\"hex\";s:5:\"\\f113\";s:7:\"unicode\";s:8:\"&#xf113;\";}s:20:\"fab fa-github-square\";a:2:{s:3:\"hex\";s:5:\"\\f092\";s:7:\"unicode\";s:8:\"&#xf092;\";}s:16:\"fab fa-gitkraken\";a:2:{s:3:\"hex\";s:5:\"\\f3a6\";s:7:\"unicode\";s:8:\"&#xf3a6;\";}s:13:\"fab fa-gitlab\";a:2:{s:3:\"hex\";s:5:\"\\f296\";s:7:\"unicode\";s:8:\"&#xf296;\";}s:13:\"fab fa-gitter\";a:2:{s:3:\"hex\";s:5:\"\\f426\";s:7:\"unicode\";s:8:\"&#xf426;\";}s:12:\"fab fa-glide\";a:2:{s:3:\"hex\";s:5:\"\\f2a5\";s:7:\"unicode\";s:8:\"&#xf2a5;\";}s:14:\"fab fa-glide-g\";a:2:{s:3:\"hex\";s:5:\"\\f2a6\";s:7:\"unicode\";s:8:\"&#xf2a6;\";}s:13:\"fab fa-gofore\";a:2:{s:3:\"hex\";s:5:\"\\f3a7\";s:7:\"unicode\";s:8:\"&#xf3a7;\";}s:16:\"fab fa-goodreads\";a:2:{s:3:\"hex\";s:5:\"\\f3a8\";s:7:\"unicode\";s:8:\"&#xf3a8;\";}s:18:\"fab fa-goodreads-g\";a:2:{s:3:\"hex\";s:5:\"\\f3a9\";s:7:\"unicode\";s:8:\"&#xf3a9;\";}s:13:\"fab fa-google\";a:2:{s:3:\"hex\";s:5:\"\\f1a0\";s:7:\"unicode\";s:8:\"&#xf1a0;\";}s:19:\"fab fa-google-drive\";a:2:{s:3:\"hex\";s:5:\"\\f3aa\";s:7:\"unicode\";s:8:\"&#xf3aa;\";}s:17:\"fab fa-google-pay\";a:2:{s:3:\"hex\";s:5:\"\\e079\";s:7:\"unicode\";s:8:\"&#xe079;\";}s:18:\"fab fa-google-play\";a:2:{s:3:\"hex\";s:5:\"\\f3ab\";s:7:\"unicode\";s:8:\"&#xf3ab;\";}s:18:\"fab fa-google-plus\";a:2:{s:3:\"hex\";s:5:\"\\f2b3\";s:7:\"unicode\";s:8:\"&#xf2b3;\";}s:20:\"fab fa-google-plus-g\";a:2:{s:3:\"hex\";s:5:\"\\f0d5\";s:7:\"unicode\";s:8:\"&#xf0d5;\";}s:25:\"fab fa-google-plus-square\";a:2:{s:3:\"hex\";s:5:\"\\f0d4\";s:7:\"unicode\";s:8:\"&#xf0d4;\";}s:20:\"fab fa-google-wallet\";a:2:{s:3:\"hex\";s:5:\"\\f1ee\";s:7:\"unicode\";s:8:\"&#xf1ee;\";}s:15:\"fab fa-gratipay\";a:2:{s:3:\"hex\";s:5:\"\\f184\";s:7:\"unicode\";s:8:\"&#xf184;\";}s:11:\"fab fa-grav\";a:2:{s:3:\"hex\";s:5:\"\\f2d6\";s:7:\"unicode\";s:8:\"&#xf2d6;\";}s:15:\"fab fa-gripfire\";a:2:{s:3:\"hex\";s:5:\"\\f3ac\";s:7:\"unicode\";s:8:\"&#xf3ac;\";}s:12:\"fab fa-grunt\";a:2:{s:3:\"hex\";s:5:\"\\f3ad\";s:7:\"unicode\";s:8:\"&#xf3ad;\";}s:14:\"fab fa-guilded\";a:2:{s:3:\"hex\";s:5:\"\\e07e\";s:7:\"unicode\";s:8:\"&#xe07e;\";}s:11:\"fab fa-gulp\";a:2:{s:3:\"hex\";s:5:\"\\f3ae\";s:7:\"unicode\";s:8:\"&#xf3ae;\";}s:18:\"fab fa-hacker-news\";a:2:{s:3:\"hex\";s:5:\"\\f1d4\";s:7:\"unicode\";s:8:\"&#xf1d4;\";}s:25:\"fab fa-hacker-news-square\";a:2:{s:3:\"hex\";s:5:\"\\f3af\";s:7:\"unicode\";s:8:\"&#xf3af;\";}s:17:\"fab fa-hackerrank\";a:2:{s:3:\"hex\";s:5:\"\\f5f7\";s:7:\"unicode\";s:8:\"&#xf5f7;\";}s:11:\"fab fa-hips\";a:2:{s:3:\"hex\";s:5:\"\\f452\";s:7:\"unicode\";s:8:\"&#xf452;\";}s:20:\"fab fa-hire-a-helper\";a:2:{s:3:\"hex\";s:5:\"\\f3b0\";s:7:\"unicode\";s:8:\"&#xf3b0;\";}s:11:\"fab fa-hive\";a:2:{s:3:\"hex\";s:5:\"\\e07f\";s:7:\"unicode\";s:8:\"&#xe07f;\";}s:12:\"fab fa-hooli\";a:2:{s:3:\"hex\";s:5:\"\\f427\";s:7:\"unicode\";s:8:\"&#xf427;\";}s:15:\"fab fa-hornbill\";a:2:{s:3:\"hex\";s:5:\"\\f592\";s:7:\"unicode\";s:8:\"&#xf592;\";}s:13:\"fab fa-hotjar\";a:2:{s:3:\"hex\";s:5:\"\\f3b1\";s:7:\"unicode\";s:8:\"&#xf3b1;\";}s:12:\"fab fa-houzz\";a:2:{s:3:\"hex\";s:5:\"\\f27c\";s:7:\"unicode\";s:8:\"&#xf27c;\";}s:12:\"fab fa-html5\";a:2:{s:3:\"hex\";s:5:\"\\f13b\";s:7:\"unicode\";s:8:\"&#xf13b;\";}s:14:\"fab fa-hubspot\";a:2:{s:3:\"hex\";s:5:\"\\f3b2\";s:7:\"unicode\";s:8:\"&#xf3b2;\";}s:12:\"fab fa-ideal\";a:2:{s:3:\"hex\";s:5:\"\\e013\";s:7:\"unicode\";s:8:\"&#xe013;\";}s:11:\"fab fa-imdb\";a:2:{s:3:\"hex\";s:5:\"\\f2d8\";s:7:\"unicode\";s:8:\"&#xf2d8;\";}s:15:\"fab fa-innosoft\";a:2:{s:3:\"hex\";s:5:\"\\e080\";s:7:\"unicode\";s:8:\"&#xe080;\";}s:16:\"fab fa-instagram\";a:2:{s:3:\"hex\";s:5:\"\\f16d\";s:7:\"unicode\";s:8:\"&#xf16d;\";}s:23:\"fab fa-instagram-square\";a:2:{s:3:\"hex\";s:5:\"\\e055\";s:7:\"unicode\";s:8:\"&#xe055;\";}s:15:\"fab fa-instalod\";a:2:{s:3:\"hex\";s:5:\"\\e081\";s:7:\"unicode\";s:8:\"&#xe081;\";}s:15:\"fab fa-intercom\";a:2:{s:3:\"hex\";s:5:\"\\f7af\";s:7:\"unicode\";s:8:\"&#xf7af;\";}s:24:\"fab fa-internet-explorer\";a:2:{s:3:\"hex\";s:5:\"\\f26b\";s:7:\"unicode\";s:8:\"&#xf26b;\";}s:15:\"fab fa-invision\";a:2:{s:3:\"hex\";s:5:\"\\f7b0\";s:7:\"unicode\";s:8:\"&#xf7b0;\";}s:14:\"fab fa-ioxhost\";a:2:{s:3:\"hex\";s:5:\"\\f208\";s:7:\"unicode\";s:8:\"&#xf208;\";}s:14:\"fab fa-itch-io\";a:2:{s:3:\"hex\";s:5:\"\\f83a\";s:7:\"unicode\";s:8:\"&#xf83a;\";}s:13:\"fab fa-itunes\";a:2:{s:3:\"hex\";s:5:\"\\f3b4\";s:7:\"unicode\";s:8:\"&#xf3b4;\";}s:18:\"fab fa-itunes-note\";a:2:{s:3:\"hex\";s:5:\"\\f3b5\";s:7:\"unicode\";s:8:\"&#xf3b5;\";}s:11:\"fab fa-java\";a:2:{s:3:\"hex\";s:5:\"\\f4e4\";s:7:\"unicode\";s:8:\"&#xf4e4;\";}s:17:\"fab fa-jedi-order\";a:2:{s:3:\"hex\";s:5:\"\\f50e\";s:7:\"unicode\";s:8:\"&#xf50e;\";}s:14:\"fab fa-jenkins\";a:2:{s:3:\"hex\";s:5:\"\\f3b6\";s:7:\"unicode\";s:8:\"&#xf3b6;\";}s:11:\"fab fa-jira\";a:2:{s:3:\"hex\";s:5:\"\\f7b1\";s:7:\"unicode\";s:8:\"&#xf7b1;\";}s:12:\"fab fa-joget\";a:2:{s:3:\"hex\";s:5:\"\\f3b7\";s:7:\"unicode\";s:8:\"&#xf3b7;\";}s:13:\"fab fa-joomla\";a:2:{s:3:\"hex\";s:5:\"\\f1aa\";s:7:\"unicode\";s:8:\"&#xf1aa;\";}s:9:\"fab fa-js\";a:2:{s:3:\"hex\";s:5:\"\\f3b8\";s:7:\"unicode\";s:8:\"&#xf3b8;\";}s:16:\"fab fa-js-square\";a:2:{s:3:\"hex\";s:5:\"\\f3b9\";s:7:\"unicode\";s:8:\"&#xf3b9;\";}s:15:\"fab fa-jsfiddle\";a:2:{s:3:\"hex\";s:5:\"\\f1cc\";s:7:\"unicode\";s:8:\"&#xf1cc;\";}s:13:\"fab fa-kaggle\";a:2:{s:3:\"hex\";s:5:\"\\f5fa\";s:7:\"unicode\";s:8:\"&#xf5fa;\";}s:14:\"fab fa-keybase\";a:2:{s:3:\"hex\";s:5:\"\\f4f5\";s:7:\"unicode\";s:8:\"&#xf4f5;\";}s:13:\"fab fa-keycdn\";a:2:{s:3:\"hex\";s:5:\"\\f3ba\";s:7:\"unicode\";s:8:\"&#xf3ba;\";}s:18:\"fab fa-kickstarter\";a:2:{s:3:\"hex\";s:5:\"\\f3bb\";s:7:\"unicode\";s:8:\"&#xf3bb;\";}s:20:\"fab fa-kickstarter-k\";a:2:{s:3:\"hex\";s:5:\"\\f3bc\";s:7:\"unicode\";s:8:\"&#xf3bc;\";}s:13:\"fab fa-korvue\";a:2:{s:3:\"hex\";s:5:\"\\f42f\";s:7:\"unicode\";s:8:\"&#xf42f;\";}s:14:\"fab fa-laravel\";a:2:{s:3:\"hex\";s:5:\"\\f3bd\";s:7:\"unicode\";s:8:\"&#xf3bd;\";}s:13:\"fab fa-lastfm\";a:2:{s:3:\"hex\";s:5:\"\\f202\";s:7:\"unicode\";s:8:\"&#xf202;\";}s:20:\"fab fa-lastfm-square\";a:2:{s:3:\"hex\";s:5:\"\\f203\";s:7:\"unicode\";s:8:\"&#xf203;\";}s:14:\"fab fa-leanpub\";a:2:{s:3:\"hex\";s:5:\"\\f212\";s:7:\"unicode\";s:8:\"&#xf212;\";}s:11:\"fab fa-less\";a:2:{s:3:\"hex\";s:5:\"\\f41d\";s:7:\"unicode\";s:8:\"&#xf41d;\";}s:11:\"fab fa-line\";a:2:{s:3:\"hex\";s:5:\"\\f3c0\";s:7:\"unicode\";s:8:\"&#xf3c0;\";}s:15:\"fab fa-linkedin\";a:2:{s:3:\"hex\";s:5:\"\\f08c\";s:7:\"unicode\";s:8:\"&#xf08c;\";}s:18:\"fab fa-linkedin-in\";a:2:{s:3:\"hex\";s:5:\"\\f0e1\";s:7:\"unicode\";s:8:\"&#xf0e1;\";}s:13:\"fab fa-linode\";a:2:{s:3:\"hex\";s:5:\"\\f2b8\";s:7:\"unicode\";s:8:\"&#xf2b8;\";}s:12:\"fab fa-linux\";a:2:{s:3:\"hex\";s:5:\"\\f17c\";s:7:\"unicode\";s:8:\"&#xf17c;\";}s:11:\"fab fa-lyft\";a:2:{s:3:\"hex\";s:5:\"\\f3c3\";s:7:\"unicode\";s:8:\"&#xf3c3;\";}s:14:\"fab fa-magento\";a:2:{s:3:\"hex\";s:5:\"\\f3c4\";s:7:\"unicode\";s:8:\"&#xf3c4;\";}s:16:\"fab fa-mailchimp\";a:2:{s:3:\"hex\";s:5:\"\\f59e\";s:7:\"unicode\";s:8:\"&#xf59e;\";}s:18:\"fab fa-mandalorian\";a:2:{s:3:\"hex\";s:5:\"\\f50f\";s:7:\"unicode\";s:8:\"&#xf50f;\";}s:15:\"fab fa-markdown\";a:2:{s:3:\"hex\";s:5:\"\\f60f\";s:7:\"unicode\";s:8:\"&#xf60f;\";}s:15:\"fab fa-mastodon\";a:2:{s:3:\"hex\";s:5:\"\\f4f6\";s:7:\"unicode\";s:8:\"&#xf4f6;\";}s:13:\"fab fa-maxcdn\";a:2:{s:3:\"hex\";s:5:\"\\f136\";s:7:\"unicode\";s:8:\"&#xf136;\";}s:10:\"fab fa-mdb\";a:2:{s:3:\"hex\";s:5:\"\\f8ca\";s:7:\"unicode\";s:8:\"&#xf8ca;\";}s:14:\"fab fa-medapps\";a:2:{s:3:\"hex\";s:5:\"\\f3c6\";s:7:\"unicode\";s:8:\"&#xf3c6;\";}s:13:\"fab fa-medium\";a:2:{s:3:\"hex\";s:5:\"\\f23a\";s:7:\"unicode\";s:8:\"&#xf23a;\";}s:15:\"fab fa-medium-m\";a:2:{s:3:\"hex\";s:5:\"\\f3c7\";s:7:\"unicode\";s:8:\"&#xf3c7;\";}s:12:\"fab fa-medrt\";a:2:{s:3:\"hex\";s:5:\"\\f3c8\";s:7:\"unicode\";s:8:\"&#xf3c8;\";}s:13:\"fab fa-meetup\";a:2:{s:3:\"hex\";s:5:\"\\f2e0\";s:7:\"unicode\";s:8:\"&#xf2e0;\";}s:15:\"fab fa-megaport\";a:2:{s:3:\"hex\";s:5:\"\\f5a3\";s:7:\"unicode\";s:8:\"&#xf5a3;\";}s:15:\"fab fa-mendeley\";a:2:{s:3:\"hex\";s:5:\"\\f7b3\";s:7:\"unicode\";s:8:\"&#xf7b3;\";}s:16:\"fab fa-microblog\";a:2:{s:3:\"hex\";s:5:\"\\e01a\";s:7:\"unicode\";s:8:\"&#xe01a;\";}s:16:\"fab fa-microsoft\";a:2:{s:3:\"hex\";s:5:\"\\f3ca\";s:7:\"unicode\";s:8:\"&#xf3ca;\";}s:10:\"fab fa-mix\";a:2:{s:3:\"hex\";s:5:\"\\f3cb\";s:7:\"unicode\";s:8:\"&#xf3cb;\";}s:15:\"fab fa-mixcloud\";a:2:{s:3:\"hex\";s:5:\"\\f289\";s:7:\"unicode\";s:8:\"&#xf289;\";}s:12:\"fab fa-mixer\";a:2:{s:3:\"hex\";s:5:\"\\e056\";s:7:\"unicode\";s:8:\"&#xe056;\";}s:13:\"fab fa-mizuni\";a:2:{s:3:\"hex\";s:5:\"\\f3cc\";s:7:\"unicode\";s:8:\"&#xf3cc;\";}s:11:\"fab fa-modx\";a:2:{s:3:\"hex\";s:5:\"\\f285\";s:7:\"unicode\";s:8:\"&#xf285;\";}s:13:\"fab fa-monero\";a:2:{s:3:\"hex\";s:5:\"\\f3d0\";s:7:\"unicode\";s:8:\"&#xf3d0;\";}s:14:\"fab fa-napster\";a:2:{s:3:\"hex\";s:5:\"\\f3d2\";s:7:\"unicode\";s:8:\"&#xf3d2;\";}s:11:\"fab fa-neos\";a:2:{s:3:\"hex\";s:5:\"\\f612\";s:7:\"unicode\";s:8:\"&#xf612;\";}s:13:\"fab fa-nimblr\";a:2:{s:3:\"hex\";s:5:\"\\f5a8\";s:7:\"unicode\";s:8:\"&#xf5a8;\";}s:11:\"fab fa-node\";a:2:{s:3:\"hex\";s:5:\"\\f419\";s:7:\"unicode\";s:8:\"&#xf419;\";}s:14:\"fab fa-node-js\";a:2:{s:3:\"hex\";s:5:\"\\f3d3\";s:7:\"unicode\";s:8:\"&#xf3d3;\";}s:10:\"fab fa-npm\";a:2:{s:3:\"hex\";s:5:\"\\f3d4\";s:7:\"unicode\";s:8:\"&#xf3d4;\";}s:10:\"fab fa-ns8\";a:2:{s:3:\"hex\";s:5:\"\\f3d5\";s:7:\"unicode\";s:8:\"&#xf3d5;\";}s:18:\"fab fa-nutritionix\";a:2:{s:3:\"hex\";s:5:\"\\f3d6\";s:7:\"unicode\";s:8:\"&#xf3d6;\";}s:21:\"fab fa-octopus-deploy\";a:2:{s:3:\"hex\";s:5:\"\\e082\";s:7:\"unicode\";s:8:\"&#xe082;\";}s:20:\"fab fa-odnoklassniki\";a:2:{s:3:\"hex\";s:5:\"\\f263\";s:7:\"unicode\";s:8:\"&#xf263;\";}s:27:\"fab fa-odnoklassniki-square\";a:2:{s:3:\"hex\";s:5:\"\\f264\";s:7:\"unicode\";s:8:\"&#xf264;\";}s:19:\"fab fa-old-republic\";a:2:{s:3:\"hex\";s:5:\"\\f510\";s:7:\"unicode\";s:8:\"&#xf510;\";}s:15:\"fab fa-opencart\";a:2:{s:3:\"hex\";s:5:\"\\f23d\";s:7:\"unicode\";s:8:\"&#xf23d;\";}s:13:\"fab fa-openid\";a:2:{s:3:\"hex\";s:5:\"\\f19b\";s:7:\"unicode\";s:8:\"&#xf19b;\";}s:12:\"fab fa-opera\";a:2:{s:3:\"hex\";s:5:\"\\f26a\";s:7:\"unicode\";s:8:\"&#xf26a;\";}s:20:\"fab fa-optin-monster\";a:2:{s:3:\"hex\";s:5:\"\\f23c\";s:7:\"unicode\";s:8:\"&#xf23c;\";}s:12:\"fab fa-orcid\";a:2:{s:3:\"hex\";s:5:\"\\f8d2\";s:7:\"unicode\";s:8:\"&#xf8d2;\";}s:10:\"fab fa-osi\";a:2:{s:3:\"hex\";s:5:\"\\f41a\";s:7:\"unicode\";s:8:\"&#xf41a;\";}s:12:\"fab fa-page4\";a:2:{s:3:\"hex\";s:5:\"\\f3d7\";s:7:\"unicode\";s:8:\"&#xf3d7;\";}s:16:\"fab fa-pagelines\";a:2:{s:3:\"hex\";s:5:\"\\f18c\";s:7:\"unicode\";s:8:\"&#xf18c;\";}s:13:\"fab fa-palfed\";a:2:{s:3:\"hex\";s:5:\"\\f3d8\";s:7:\"unicode\";s:8:\"&#xf3d8;\";}s:14:\"fab fa-patreon\";a:2:{s:3:\"hex\";s:5:\"\\f3d9\";s:7:\"unicode\";s:8:\"&#xf3d9;\";}s:13:\"fab fa-paypal\";a:2:{s:3:\"hex\";s:5:\"\\f1ed\";s:7:\"unicode\";s:8:\"&#xf1ed;\";}s:19:\"fab fa-penny-arcade\";a:2:{s:3:\"hex\";s:5:\"\\f704\";s:7:\"unicode\";s:8:\"&#xf704;\";}s:14:\"fab fa-perbyte\";a:2:{s:3:\"hex\";s:5:\"\\e083\";s:7:\"unicode\";s:8:\"&#xe083;\";}s:16:\"fab fa-periscope\";a:2:{s:3:\"hex\";s:5:\"\\f3da\";s:7:\"unicode\";s:8:\"&#xf3da;\";}s:18:\"fab fa-phabricator\";a:2:{s:3:\"hex\";s:5:\"\\f3db\";s:7:\"unicode\";s:8:\"&#xf3db;\";}s:24:\"fab fa-phoenix-framework\";a:2:{s:3:\"hex\";s:5:\"\\f3dc\";s:7:\"unicode\";s:8:\"&#xf3dc;\";}s:23:\"fab fa-phoenix-squadron\";a:2:{s:3:\"hex\";s:5:\"\\f511\";s:7:\"unicode\";s:8:\"&#xf511;\";}s:10:\"fab fa-php\";a:2:{s:3:\"hex\";s:5:\"\\f457\";s:7:\"unicode\";s:8:\"&#xf457;\";}s:17:\"fab fa-pied-piper\";a:2:{s:3:\"hex\";s:5:\"\\f2ae\";s:7:\"unicode\";s:8:\"&#xf2ae;\";}s:21:\"fab fa-pied-piper-alt\";a:2:{s:3:\"hex\";s:5:\"\\f1a8\";s:7:\"unicode\";s:8:\"&#xf1a8;\";}s:21:\"fab fa-pied-piper-hat\";a:2:{s:3:\"hex\";s:5:\"\\f4e5\";s:7:\"unicode\";s:8:\"&#xf4e5;\";}s:20:\"fab fa-pied-piper-pp\";a:2:{s:3:\"hex\";s:5:\"\\f1a7\";s:7:\"unicode\";s:8:\"&#xf1a7;\";}s:24:\"fab fa-pied-piper-square\";a:2:{s:3:\"hex\";s:5:\"\\e01e\";s:7:\"unicode\";s:8:\"&#xe01e;\";}s:16:\"fab fa-pinterest\";a:2:{s:3:\"hex\";s:5:\"\\f0d2\";s:7:\"unicode\";s:8:\"&#xf0d2;\";}s:18:\"fab fa-pinterest-p\";a:2:{s:3:\"hex\";s:5:\"\\f231\";s:7:\"unicode\";s:8:\"&#xf231;\";}s:23:\"fab fa-pinterest-square\";a:2:{s:3:\"hex\";s:5:\"\\f0d3\";s:7:\"unicode\";s:8:\"&#xf0d3;\";}s:18:\"fab fa-playstation\";a:2:{s:3:\"hex\";s:5:\"\\f3df\";s:7:\"unicode\";s:8:\"&#xf3df;\";}s:19:\"fab fa-product-hunt\";a:2:{s:3:\"hex\";s:5:\"\\f288\";s:7:\"unicode\";s:8:\"&#xf288;\";}s:13:\"fab fa-pushed\";a:2:{s:3:\"hex\";s:5:\"\\f3e1\";s:7:\"unicode\";s:8:\"&#xf3e1;\";}s:13:\"fab fa-python\";a:2:{s:3:\"hex\";s:5:\"\\f3e2\";s:7:\"unicode\";s:8:\"&#xf3e2;\";}s:9:\"fab fa-qq\";a:2:{s:3:\"hex\";s:5:\"\\f1d6\";s:7:\"unicode\";s:8:\"&#xf1d6;\";}s:16:\"fab fa-quinscape\";a:2:{s:3:\"hex\";s:5:\"\\f459\";s:7:\"unicode\";s:8:\"&#xf459;\";}s:12:\"fab fa-quora\";a:2:{s:3:\"hex\";s:5:\"\\f2c4\";s:7:\"unicode\";s:8:\"&#xf2c4;\";}s:16:\"fab fa-r-project\";a:2:{s:3:\"hex\";s:5:\"\\f4f7\";s:7:\"unicode\";s:8:\"&#xf4f7;\";}s:19:\"fab fa-raspberry-pi\";a:2:{s:3:\"hex\";s:5:\"\\f7bb\";s:7:\"unicode\";s:8:\"&#xf7bb;\";}s:14:\"fab fa-ravelry\";a:2:{s:3:\"hex\";s:5:\"\\f2d9\";s:7:\"unicode\";s:8:\"&#xf2d9;\";}s:12:\"fab fa-react\";a:2:{s:3:\"hex\";s:5:\"\\f41b\";s:7:\"unicode\";s:8:\"&#xf41b;\";}s:18:\"fab fa-reacteurope\";a:2:{s:3:\"hex\";s:5:\"\\f75d\";s:7:\"unicode\";s:8:\"&#xf75d;\";}s:13:\"fab fa-readme\";a:2:{s:3:\"hex\";s:5:\"\\f4d5\";s:7:\"unicode\";s:8:\"&#xf4d5;\";}s:12:\"fab fa-rebel\";a:2:{s:3:\"hex\";s:5:\"\\f1d0\";s:7:\"unicode\";s:8:\"&#xf1d0;\";}s:16:\"fab fa-red-river\";a:2:{s:3:\"hex\";s:5:\"\\f3e3\";s:7:\"unicode\";s:8:\"&#xf3e3;\";}s:13:\"fab fa-reddit\";a:2:{s:3:\"hex\";s:5:\"\\f1a1\";s:7:\"unicode\";s:8:\"&#xf1a1;\";}s:19:\"fab fa-reddit-alien\";a:2:{s:3:\"hex\";s:5:\"\\f281\";s:7:\"unicode\";s:8:\"&#xf281;\";}s:20:\"fab fa-reddit-square\";a:2:{s:3:\"hex\";s:5:\"\\f1a2\";s:7:\"unicode\";s:8:\"&#xf1a2;\";}s:13:\"fab fa-redhat\";a:2:{s:3:\"hex\";s:5:\"\\f7bc\";s:7:\"unicode\";s:8:\"&#xf7bc;\";}s:13:\"fab fa-renren\";a:2:{s:3:\"hex\";s:5:\"\\f18b\";s:7:\"unicode\";s:8:\"&#xf18b;\";}s:13:\"fab fa-replyd\";a:2:{s:3:\"hex\";s:5:\"\\f3e6\";s:7:\"unicode\";s:8:\"&#xf3e6;\";}s:19:\"fab fa-researchgate\";a:2:{s:3:\"hex\";s:5:\"\\f4f8\";s:7:\"unicode\";s:8:\"&#xf4f8;\";}s:16:\"fab fa-resolving\";a:2:{s:3:\"hex\";s:5:\"\\f3e7\";s:7:\"unicode\";s:8:\"&#xf3e7;\";}s:10:\"fab fa-rev\";a:2:{s:3:\"hex\";s:5:\"\\f5b2\";s:7:\"unicode\";s:8:\"&#xf5b2;\";}s:17:\"fab fa-rocketchat\";a:2:{s:3:\"hex\";s:5:\"\\f3e8\";s:7:\"unicode\";s:8:\"&#xf3e8;\";}s:14:\"fab fa-rockrms\";a:2:{s:3:\"hex\";s:5:\"\\f3e9\";s:7:\"unicode\";s:8:\"&#xf3e9;\";}s:11:\"fab fa-rust\";a:2:{s:3:\"hex\";s:5:\"\\e07a\";s:7:\"unicode\";s:8:\"&#xe07a;\";}s:13:\"fab fa-safari\";a:2:{s:3:\"hex\";s:5:\"\\f267\";s:7:\"unicode\";s:8:\"&#xf267;\";}s:17:\"fab fa-salesforce\";a:2:{s:3:\"hex\";s:5:\"\\f83b\";s:7:\"unicode\";s:8:\"&#xf83b;\";}s:11:\"fab fa-sass\";a:2:{s:3:\"hex\";s:5:\"\\f41e\";s:7:\"unicode\";s:8:\"&#xf41e;\";}s:13:\"fab fa-schlix\";a:2:{s:3:\"hex\";s:5:\"\\f3ea\";s:7:\"unicode\";s:8:\"&#xf3ea;\";}s:13:\"fab fa-scribd\";a:2:{s:3:\"hex\";s:5:\"\\f28a\";s:7:\"unicode\";s:8:\"&#xf28a;\";}s:18:\"fab fa-searchengin\";a:2:{s:3:\"hex\";s:5:\"\\f3eb\";s:7:\"unicode\";s:8:\"&#xf3eb;\";}s:15:\"fab fa-sellcast\";a:2:{s:3:\"hex\";s:5:\"\\f2da\";s:7:\"unicode\";s:8:\"&#xf2da;\";}s:13:\"fab fa-sellsy\";a:2:{s:3:\"hex\";s:5:\"\\f213\";s:7:\"unicode\";s:8:\"&#xf213;\";}s:19:\"fab fa-servicestack\";a:2:{s:3:\"hex\";s:5:\"\\f3ec\";s:7:\"unicode\";s:8:\"&#xf3ec;\";}s:19:\"fab fa-shirtsinbulk\";a:2:{s:3:\"hex\";s:5:\"\\f214\";s:7:\"unicode\";s:8:\"&#xf214;\";}s:14:\"fab fa-shopify\";a:2:{s:3:\"hex\";s:5:\"\\e057\";s:7:\"unicode\";s:8:\"&#xe057;\";}s:15:\"fab fa-shopware\";a:2:{s:3:\"hex\";s:5:\"\\f5b5\";s:7:\"unicode\";s:8:\"&#xf5b5;\";}s:18:\"fab fa-simplybuilt\";a:2:{s:3:\"hex\";s:5:\"\\f215\";s:7:\"unicode\";s:8:\"&#xf215;\";}s:14:\"fab fa-sistrix\";a:2:{s:3:\"hex\";s:5:\"\\f3ee\";s:7:\"unicode\";s:8:\"&#xf3ee;\";}s:11:\"fab fa-sith\";a:2:{s:3:\"hex\";s:5:\"\\f512\";s:7:\"unicode\";s:8:\"&#xf512;\";}s:13:\"fab fa-sketch\";a:2:{s:3:\"hex\";s:5:\"\\f7c6\";s:7:\"unicode\";s:8:\"&#xf7c6;\";}s:15:\"fab fa-skyatlas\";a:2:{s:3:\"hex\";s:5:\"\\f216\";s:7:\"unicode\";s:8:\"&#xf216;\";}s:12:\"fab fa-skype\";a:2:{s:3:\"hex\";s:5:\"\\f17e\";s:7:\"unicode\";s:8:\"&#xf17e;\";}s:12:\"fab fa-slack\";a:2:{s:3:\"hex\";s:5:\"\\f198\";s:7:\"unicode\";s:8:\"&#xf198;\";}s:17:\"fab fa-slack-hash\";a:2:{s:3:\"hex\";s:5:\"\\f3ef\";s:7:\"unicode\";s:8:\"&#xf3ef;\";}s:17:\"fab fa-slideshare\";a:2:{s:3:\"hex\";s:5:\"\\f1e7\";s:7:\"unicode\";s:8:\"&#xf1e7;\";}s:15:\"fab fa-snapchat\";a:2:{s:3:\"hex\";s:5:\"\\f2ab\";s:7:\"unicode\";s:8:\"&#xf2ab;\";}s:21:\"fab fa-snapchat-ghost\";a:2:{s:3:\"hex\";s:5:\"\\f2ac\";s:7:\"unicode\";s:8:\"&#xf2ac;\";}s:22:\"fab fa-snapchat-square\";a:2:{s:3:\"hex\";s:5:\"\\f2ad\";s:7:\"unicode\";s:8:\"&#xf2ad;\";}s:17:\"fab fa-soundcloud\";a:2:{s:3:\"hex\";s:5:\"\\f1be\";s:7:\"unicode\";s:8:\"&#xf1be;\";}s:17:\"fab fa-sourcetree\";a:2:{s:3:\"hex\";s:5:\"\\f7d3\";s:7:\"unicode\";s:8:\"&#xf7d3;\";}s:14:\"fab fa-speakap\";a:2:{s:3:\"hex\";s:5:\"\\f3f3\";s:7:\"unicode\";s:8:\"&#xf3f3;\";}s:19:\"fab fa-speaker-deck\";a:2:{s:3:\"hex\";s:5:\"\\f83c\";s:7:\"unicode\";s:8:\"&#xf83c;\";}s:14:\"fab fa-spotify\";a:2:{s:3:\"hex\";s:5:\"\\f1bc\";s:7:\"unicode\";s:8:\"&#xf1bc;\";}s:18:\"fab fa-squarespace\";a:2:{s:3:\"hex\";s:5:\"\\f5be\";s:7:\"unicode\";s:8:\"&#xf5be;\";}s:21:\"fab fa-stack-exchange\";a:2:{s:3:\"hex\";s:5:\"\\f18d\";s:7:\"unicode\";s:8:\"&#xf18d;\";}s:21:\"fab fa-stack-overflow\";a:2:{s:3:\"hex\";s:5:\"\\f16c\";s:7:\"unicode\";s:8:\"&#xf16c;\";}s:16:\"fab fa-stackpath\";a:2:{s:3:\"hex\";s:5:\"\\f842\";s:7:\"unicode\";s:8:\"&#xf842;\";}s:17:\"fab fa-staylinked\";a:2:{s:3:\"hex\";s:5:\"\\f3f5\";s:7:\"unicode\";s:8:\"&#xf3f5;\";}s:12:\"fab fa-steam\";a:2:{s:3:\"hex\";s:5:\"\\f1b6\";s:7:\"unicode\";s:8:\"&#xf1b6;\";}s:19:\"fab fa-steam-square\";a:2:{s:3:\"hex\";s:5:\"\\f1b7\";s:7:\"unicode\";s:8:\"&#xf1b7;\";}s:19:\"fab fa-steam-symbol\";a:2:{s:3:\"hex\";s:5:\"\\f3f6\";s:7:\"unicode\";s:8:\"&#xf3f6;\";}s:19:\"fab fa-sticker-mule\";a:2:{s:3:\"hex\";s:5:\"\\f3f7\";s:7:\"unicode\";s:8:\"&#xf3f7;\";}s:13:\"fab fa-strava\";a:2:{s:3:\"hex\";s:5:\"\\f428\";s:7:\"unicode\";s:8:\"&#xf428;\";}s:13:\"fab fa-stripe\";a:2:{s:3:\"hex\";s:5:\"\\f429\";s:7:\"unicode\";s:8:\"&#xf429;\";}s:15:\"fab fa-stripe-s\";a:2:{s:3:\"hex\";s:5:\"\\f42a\";s:7:\"unicode\";s:8:\"&#xf42a;\";}s:19:\"fab fa-studiovinari\";a:2:{s:3:\"hex\";s:5:\"\\f3f8\";s:7:\"unicode\";s:8:\"&#xf3f8;\";}s:18:\"fab fa-stumbleupon\";a:2:{s:3:\"hex\";s:5:\"\\f1a4\";s:7:\"unicode\";s:8:\"&#xf1a4;\";}s:25:\"fab fa-stumbleupon-circle\";a:2:{s:3:\"hex\";s:5:\"\\f1a3\";s:7:\"unicode\";s:8:\"&#xf1a3;\";}s:18:\"fab fa-superpowers\";a:2:{s:3:\"hex\";s:5:\"\\f2dd\";s:7:\"unicode\";s:8:\"&#xf2dd;\";}s:13:\"fab fa-supple\";a:2:{s:3:\"hex\";s:5:\"\\f3f9\";s:7:\"unicode\";s:8:\"&#xf3f9;\";}s:11:\"fab fa-suse\";a:2:{s:3:\"hex\";s:5:\"\\f7d6\";s:7:\"unicode\";s:8:\"&#xf7d6;\";}s:12:\"fab fa-swift\";a:2:{s:3:\"hex\";s:5:\"\\f8e1\";s:7:\"unicode\";s:8:\"&#xf8e1;\";}s:14:\"fab fa-symfony\";a:2:{s:3:\"hex\";s:5:\"\\f83d\";s:7:\"unicode\";s:8:\"&#xf83d;\";}s:16:\"fab fa-teamspeak\";a:2:{s:3:\"hex\";s:5:\"\\f4f9\";s:7:\"unicode\";s:8:\"&#xf4f9;\";}s:15:\"fab fa-telegram\";a:2:{s:3:\"hex\";s:5:\"\\f2c6\";s:7:\"unicode\";s:8:\"&#xf2c6;\";}s:21:\"fab fa-telegram-plane\";a:2:{s:3:\"hex\";s:5:\"\\f3fe\";s:7:\"unicode\";s:8:\"&#xf3fe;\";}s:20:\"fab fa-tencent-weibo\";a:2:{s:3:\"hex\";s:5:\"\\f1d5\";s:7:\"unicode\";s:8:\"&#xf1d5;\";}s:19:\"fab fa-the-red-yeti\";a:2:{s:3:\"hex\";s:5:\"\\f69d\";s:7:\"unicode\";s:8:\"&#xf69d;\";}s:14:\"fab fa-themeco\";a:2:{s:3:\"hex\";s:5:\"\\f5c6\";s:7:\"unicode\";s:8:\"&#xf5c6;\";}s:16:\"fab fa-themeisle\";a:2:{s:3:\"hex\";s:5:\"\\f2b2\";s:7:\"unicode\";s:8:\"&#xf2b2;\";}s:18:\"fab fa-think-peaks\";a:2:{s:3:\"hex\";s:5:\"\\f731\";s:7:\"unicode\";s:8:\"&#xf731;\";}s:13:\"fab fa-tiktok\";a:2:{s:3:\"hex\";s:5:\"\\e07b\";s:7:\"unicode\";s:8:\"&#xe07b;\";}s:23:\"fab fa-trade-federation\";a:2:{s:3:\"hex\";s:5:\"\\f513\";s:7:\"unicode\";s:8:\"&#xf513;\";}s:13:\"fab fa-trello\";a:2:{s:3:\"hex\";s:5:\"\\f181\";s:7:\"unicode\";s:8:\"&#xf181;\";}s:13:\"fab fa-tumblr\";a:2:{s:3:\"hex\";s:5:\"\\f173\";s:7:\"unicode\";s:8:\"&#xf173;\";}s:20:\"fab fa-tumblr-square\";a:2:{s:3:\"hex\";s:5:\"\\f174\";s:7:\"unicode\";s:8:\"&#xf174;\";}s:13:\"fab fa-twitch\";a:2:{s:3:\"hex\";s:5:\"\\f1e8\";s:7:\"unicode\";s:8:\"&#xf1e8;\";}s:14:\"fab fa-twitter\";a:2:{s:3:\"hex\";s:5:\"\\f099\";s:7:\"unicode\";s:8:\"&#xf099;\";}s:21:\"fab fa-twitter-square\";a:2:{s:3:\"hex\";s:5:\"\\f081\";s:7:\"unicode\";s:8:\"&#xf081;\";}s:12:\"fab fa-typo3\";a:2:{s:3:\"hex\";s:5:\"\\f42b\";s:7:\"unicode\";s:8:\"&#xf42b;\";}s:11:\"fab fa-uber\";a:2:{s:3:\"hex\";s:5:\"\\f402\";s:7:\"unicode\";s:8:\"&#xf402;\";}s:13:\"fab fa-ubuntu\";a:2:{s:3:\"hex\";s:5:\"\\f7df\";s:7:\"unicode\";s:8:\"&#xf7df;\";}s:12:\"fab fa-uikit\";a:2:{s:3:\"hex\";s:5:\"\\f403\";s:7:\"unicode\";s:8:\"&#xf403;\";}s:14:\"fab fa-umbraco\";a:2:{s:3:\"hex\";s:5:\"\\f8e8\";s:7:\"unicode\";s:8:\"&#xf8e8;\";}s:16:\"fab fa-uncharted\";a:2:{s:3:\"hex\";s:5:\"\\e084\";s:7:\"unicode\";s:8:\"&#xe084;\";}s:18:\"fab fa-uniregistry\";a:2:{s:3:\"hex\";s:5:\"\\f404\";s:7:\"unicode\";s:8:\"&#xf404;\";}s:12:\"fab fa-unity\";a:2:{s:3:\"hex\";s:5:\"\\e049\";s:7:\"unicode\";s:8:\"&#xe049;\";}s:15:\"fab fa-unsplash\";a:2:{s:3:\"hex\";s:5:\"\\e07c\";s:7:\"unicode\";s:8:\"&#xe07c;\";}s:14:\"fab fa-untappd\";a:2:{s:3:\"hex\";s:5:\"\\f405\";s:7:\"unicode\";s:8:\"&#xf405;\";}s:10:\"fab fa-ups\";a:2:{s:3:\"hex\";s:5:\"\\f7e0\";s:7:\"unicode\";s:8:\"&#xf7e0;\";}s:10:\"fab fa-usb\";a:2:{s:3:\"hex\";s:5:\"\\f287\";s:7:\"unicode\";s:8:\"&#xf287;\";}s:11:\"fab fa-usps\";a:2:{s:3:\"hex\";s:5:\"\\f7e1\";s:7:\"unicode\";s:8:\"&#xf7e1;\";}s:15:\"fab fa-ussunnah\";a:2:{s:3:\"hex\";s:5:\"\\f407\";s:7:\"unicode\";s:8:\"&#xf407;\";}s:13:\"fab fa-vaadin\";a:2:{s:3:\"hex\";s:5:\"\\f408\";s:7:\"unicode\";s:8:\"&#xf408;\";}s:14:\"fab fa-viacoin\";a:2:{s:3:\"hex\";s:5:\"\\f237\";s:7:\"unicode\";s:8:\"&#xf237;\";}s:13:\"fab fa-viadeo\";a:2:{s:3:\"hex\";s:5:\"\\f2a9\";s:7:\"unicode\";s:8:\"&#xf2a9;\";}s:20:\"fab fa-viadeo-square\";a:2:{s:3:\"hex\";s:5:\"\\f2aa\";s:7:\"unicode\";s:8:\"&#xf2aa;\";}s:12:\"fab fa-viber\";a:2:{s:3:\"hex\";s:5:\"\\f409\";s:7:\"unicode\";s:8:\"&#xf409;\";}s:12:\"fab fa-vimeo\";a:2:{s:3:\"hex\";s:5:\"\\f40a\";s:7:\"unicode\";s:8:\"&#xf40a;\";}s:19:\"fab fa-vimeo-square\";a:2:{s:3:\"hex\";s:5:\"\\f194\";s:7:\"unicode\";s:8:\"&#xf194;\";}s:14:\"fab fa-vimeo-v\";a:2:{s:3:\"hex\";s:5:\"\\f27d\";s:7:\"unicode\";s:8:\"&#xf27d;\";}s:11:\"fab fa-vine\";a:2:{s:3:\"hex\";s:5:\"\\f1ca\";s:7:\"unicode\";s:8:\"&#xf1ca;\";}s:9:\"fab fa-vk\";a:2:{s:3:\"hex\";s:5:\"\\f189\";s:7:\"unicode\";s:8:\"&#xf189;\";}s:10:\"fab fa-vnv\";a:2:{s:3:\"hex\";s:5:\"\\f40b\";s:7:\"unicode\";s:8:\"&#xf40b;\";}s:12:\"fab fa-vuejs\";a:2:{s:3:\"hex\";s:5:\"\\f41f\";s:7:\"unicode\";s:8:\"&#xf41f;\";}s:26:\"fab fa-watchman-monitoring\";a:2:{s:3:\"hex\";s:5:\"\\e087\";s:7:\"unicode\";s:8:\"&#xe087;\";}s:11:\"fab fa-waze\";a:2:{s:3:\"hex\";s:5:\"\\f83f\";s:7:\"unicode\";s:8:\"&#xf83f;\";}s:13:\"fab fa-weebly\";a:2:{s:3:\"hex\";s:5:\"\\f5cc\";s:7:\"unicode\";s:8:\"&#xf5cc;\";}s:12:\"fab fa-weibo\";a:2:{s:3:\"hex\";s:5:\"\\f18a\";s:7:\"unicode\";s:8:\"&#xf18a;\";}s:13:\"fab fa-weixin\";a:2:{s:3:\"hex\";s:5:\"\\f1d7\";s:7:\"unicode\";s:8:\"&#xf1d7;\";}s:15:\"fab fa-whatsapp\";a:2:{s:3:\"hex\";s:5:\"\\f232\";s:7:\"unicode\";s:8:\"&#xf232;\";}s:22:\"fab fa-whatsapp-square\";a:2:{s:3:\"hex\";s:5:\"\\f40c\";s:7:\"unicode\";s:8:\"&#xf40c;\";}s:12:\"fab fa-whmcs\";a:2:{s:3:\"hex\";s:5:\"\\f40d\";s:7:\"unicode\";s:8:\"&#xf40d;\";}s:18:\"fab fa-wikipedia-w\";a:2:{s:3:\"hex\";s:5:\"\\f266\";s:7:\"unicode\";s:8:\"&#xf266;\";}s:14:\"fab fa-windows\";a:2:{s:3:\"hex\";s:5:\"\\f17a\";s:7:\"unicode\";s:8:\"&#xf17a;\";}s:10:\"fab fa-wix\";a:2:{s:3:\"hex\";s:5:\"\\f5cf\";s:7:\"unicode\";s:8:\"&#xf5cf;\";}s:27:\"fab fa-wizards-of-the-coast\";a:2:{s:3:\"hex\";s:5:\"\\f730\";s:7:\"unicode\";s:8:\"&#xf730;\";}s:11:\"fab fa-wodu\";a:2:{s:3:\"hex\";s:5:\"\\e088\";s:7:\"unicode\";s:8:\"&#xe088;\";}s:26:\"fab fa-wolf-pack-battalion\";a:2:{s:3:\"hex\";s:5:\"\\f514\";s:7:\"unicode\";s:8:\"&#xf514;\";}s:16:\"fab fa-wordpress\";a:2:{s:3:\"hex\";s:5:\"\\f19a\";s:7:\"unicode\";s:8:\"&#xf19a;\";}s:23:\"fab fa-wordpress-simple\";a:2:{s:3:\"hex\";s:5:\"\\f411\";s:7:\"unicode\";s:8:\"&#xf411;\";}s:17:\"fab fa-wpbeginner\";a:2:{s:3:\"hex\";s:5:\"\\f297\";s:7:\"unicode\";s:8:\"&#xf297;\";}s:17:\"fab fa-wpexplorer\";a:2:{s:3:\"hex\";s:5:\"\\f2de\";s:7:\"unicode\";s:8:\"&#xf2de;\";}s:14:\"fab fa-wpforms\";a:2:{s:3:\"hex\";s:5:\"\\f298\";s:7:\"unicode\";s:8:\"&#xf298;\";}s:14:\"fab fa-wpressr\";a:2:{s:3:\"hex\";s:5:\"\\f3e4\";s:7:\"unicode\";s:8:\"&#xf3e4;\";}s:11:\"fab fa-xbox\";a:2:{s:3:\"hex\";s:5:\"\\f412\";s:7:\"unicode\";s:8:\"&#xf412;\";}s:11:\"fab fa-xing\";a:2:{s:3:\"hex\";s:5:\"\\f168\";s:7:\"unicode\";s:8:\"&#xf168;\";}s:18:\"fab fa-xing-square\";a:2:{s:3:\"hex\";s:5:\"\\f169\";s:7:\"unicode\";s:8:\"&#xf169;\";}s:19:\"fab fa-y-combinator\";a:2:{s:3:\"hex\";s:5:\"\\f23b\";s:7:\"unicode\";s:8:\"&#xf23b;\";}s:12:\"fab fa-yahoo\";a:2:{s:3:\"hex\";s:5:\"\\f19e\";s:7:\"unicode\";s:8:\"&#xf19e;\";}s:13:\"fab fa-yammer\";a:2:{s:3:\"hex\";s:5:\"\\f840\";s:7:\"unicode\";s:8:\"&#xf840;\";}s:13:\"fab fa-yandex\";a:2:{s:3:\"hex\";s:5:\"\\f413\";s:7:\"unicode\";s:8:\"&#xf413;\";}s:27:\"fab fa-yandex-international\";a:2:{s:3:\"hex\";s:5:\"\\f414\";s:7:\"unicode\";s:8:\"&#xf414;\";}s:11:\"fab fa-yarn\";a:2:{s:3:\"hex\";s:5:\"\\f7e3\";s:7:\"unicode\";s:8:\"&#xf7e3;\";}s:11:\"fab fa-yelp\";a:2:{s:3:\"hex\";s:5:\"\\f1e9\";s:7:\"unicode\";s:8:\"&#xf1e9;\";}s:12:\"fab fa-yoast\";a:2:{s:3:\"hex\";s:5:\"\\f2b1\";s:7:\"unicode\";s:8:\"&#xf2b1;\";}s:14:\"fab fa-youtube\";a:2:{s:3:\"hex\";s:5:\"\\f167\";s:7:\"unicode\";s:8:\"&#xf167;\";}s:21:\"fab fa-youtube-square\";a:2:{s:3:\"hex\";s:5:\"\\f431\";s:7:\"unicode\";s:8:\"&#xf431;\";}s:12:\"fab fa-zhihu\";a:2:{s:3:\"hex\";s:5:\"\\f63f\";s:7:\"unicode\";s:8:\"&#xf63f;\";}}s:3:\"fas\";a:1002:{s:9:\"fas fa-ad\";a:2:{s:3:\"hex\";s:5:\"\\f641\";s:7:\"unicode\";s:8:\"&#xf641;\";}s:19:\"fas fa-address-book\";a:2:{s:3:\"hex\";s:5:\"\\f2b9\";s:7:\"unicode\";s:8:\"&#xf2b9;\";}s:19:\"fas fa-address-card\";a:2:{s:3:\"hex\";s:5:\"\\f2bb\";s:7:\"unicode\";s:8:\"&#xf2bb;\";}s:13:\"fas fa-adjust\";a:2:{s:3:\"hex\";s:5:\"\\f042\";s:7:\"unicode\";s:8:\"&#xf042;\";}s:20:\"fas fa-air-freshener\";a:2:{s:3:\"hex\";s:5:\"\\f5d0\";s:7:\"unicode\";s:8:\"&#xf5d0;\";}s:19:\"fas fa-align-center\";a:2:{s:3:\"hex\";s:5:\"\\f037\";s:7:\"unicode\";s:8:\"&#xf037;\";}s:20:\"fas fa-align-justify\";a:2:{s:3:\"hex\";s:5:\"\\f039\";s:7:\"unicode\";s:8:\"&#xf039;\";}s:17:\"fas fa-align-left\";a:2:{s:3:\"hex\";s:5:\"\\f036\";s:7:\"unicode\";s:8:\"&#xf036;\";}s:18:\"fas fa-align-right\";a:2:{s:3:\"hex\";s:5:\"\\f038\";s:7:\"unicode\";s:8:\"&#xf038;\";}s:16:\"fas fa-allergies\";a:2:{s:3:\"hex\";s:5:\"\\f461\";s:7:\"unicode\";s:8:\"&#xf461;\";}s:16:\"fas fa-ambulance\";a:2:{s:3:\"hex\";s:5:\"\\f0f9\";s:7:\"unicode\";s:8:\"&#xf0f9;\";}s:42:\"fas fa-american-sign-language-interpreting\";a:2:{s:3:\"hex\";s:5:\"\\f2a3\";s:7:\"unicode\";s:8:\"&#xf2a3;\";}s:13:\"fas fa-anchor\";a:2:{s:3:\"hex\";s:5:\"\\f13d\";s:7:\"unicode\";s:8:\"&#xf13d;\";}s:24:\"fas fa-angle-double-down\";a:2:{s:3:\"hex\";s:5:\"\\f103\";s:7:\"unicode\";s:8:\"&#xf103;\";}s:24:\"fas fa-angle-double-left\";a:2:{s:3:\"hex\";s:5:\"\\f100\";s:7:\"unicode\";s:8:\"&#xf100;\";}s:25:\"fas fa-angle-double-right\";a:2:{s:3:\"hex\";s:5:\"\\f101\";s:7:\"unicode\";s:8:\"&#xf101;\";}s:22:\"fas fa-angle-double-up\";a:2:{s:3:\"hex\";s:5:\"\\f102\";s:7:\"unicode\";s:8:\"&#xf102;\";}s:17:\"fas fa-angle-down\";a:2:{s:3:\"hex\";s:5:\"\\f107\";s:7:\"unicode\";s:8:\"&#xf107;\";}s:17:\"fas fa-angle-left\";a:2:{s:3:\"hex\";s:5:\"\\f104\";s:7:\"unicode\";s:8:\"&#xf104;\";}s:18:\"fas fa-angle-right\";a:2:{s:3:\"hex\";s:5:\"\\f105\";s:7:\"unicode\";s:8:\"&#xf105;\";}s:15:\"fas fa-angle-up\";a:2:{s:3:\"hex\";s:5:\"\\f106\";s:7:\"unicode\";s:8:\"&#xf106;\";}s:12:\"fas fa-angry\";a:2:{s:3:\"hex\";s:5:\"\\f556\";s:7:\"unicode\";s:8:\"&#xf556;\";}s:11:\"fas fa-ankh\";a:2:{s:3:\"hex\";s:5:\"\\f644\";s:7:\"unicode\";s:8:\"&#xf644;\";}s:16:\"fas fa-apple-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5d1\";s:7:\"unicode\";s:8:\"&#xf5d1;\";}s:14:\"fas fa-archive\";a:2:{s:3:\"hex\";s:5:\"\\f187\";s:7:\"unicode\";s:8:\"&#xf187;\";}s:14:\"fas fa-archway\";a:2:{s:3:\"hex\";s:5:\"\\f557\";s:7:\"unicode\";s:8:\"&#xf557;\";}s:28:\"fas fa-arrow-alt-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f358\";s:7:\"unicode\";s:8:\"&#xf358;\";}s:28:\"fas fa-arrow-alt-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f359\";s:7:\"unicode\";s:8:\"&#xf359;\";}s:29:\"fas fa-arrow-alt-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f35a\";s:7:\"unicode\";s:8:\"&#xf35a;\";}s:26:\"fas fa-arrow-alt-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f35b\";s:7:\"unicode\";s:8:\"&#xf35b;\";}s:24:\"fas fa-arrow-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f0ab\";s:7:\"unicode\";s:8:\"&#xf0ab;\";}s:24:\"fas fa-arrow-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f0a8\";s:7:\"unicode\";s:8:\"&#xf0a8;\";}s:25:\"fas fa-arrow-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f0a9\";s:7:\"unicode\";s:8:\"&#xf0a9;\";}s:22:\"fas fa-arrow-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f0aa\";s:7:\"unicode\";s:8:\"&#xf0aa;\";}s:17:\"fas fa-arrow-down\";a:2:{s:3:\"hex\";s:5:\"\\f063\";s:7:\"unicode\";s:8:\"&#xf063;\";}s:17:\"fas fa-arrow-left\";a:2:{s:3:\"hex\";s:5:\"\\f060\";s:7:\"unicode\";s:8:\"&#xf060;\";}s:18:\"fas fa-arrow-right\";a:2:{s:3:\"hex\";s:5:\"\\f061\";s:7:\"unicode\";s:8:\"&#xf061;\";}s:15:\"fas fa-arrow-up\";a:2:{s:3:\"hex\";s:5:\"\\f062\";s:7:\"unicode\";s:8:\"&#xf062;\";}s:17:\"fas fa-arrows-alt\";a:2:{s:3:\"hex\";s:5:\"\\f0b2\";s:7:\"unicode\";s:8:\"&#xf0b2;\";}s:19:\"fas fa-arrows-alt-h\";a:2:{s:3:\"hex\";s:5:\"\\f337\";s:7:\"unicode\";s:8:\"&#xf337;\";}s:19:\"fas fa-arrows-alt-v\";a:2:{s:3:\"hex\";s:5:\"\\f338\";s:7:\"unicode\";s:8:\"&#xf338;\";}s:34:\"fas fa-assistive-listening-systems\";a:2:{s:3:\"hex\";s:5:\"\\f2a2\";s:7:\"unicode\";s:8:\"&#xf2a2;\";}s:15:\"fas fa-asterisk\";a:2:{s:3:\"hex\";s:5:\"\\f069\";s:7:\"unicode\";s:8:\"&#xf069;\";}s:9:\"fas fa-at\";a:2:{s:3:\"hex\";s:5:\"\\f1fa\";s:7:\"unicode\";s:8:\"&#xf1fa;\";}s:12:\"fas fa-atlas\";a:2:{s:3:\"hex\";s:5:\"\\f558\";s:7:\"unicode\";s:8:\"&#xf558;\";}s:11:\"fas fa-atom\";a:2:{s:3:\"hex\";s:5:\"\\f5d2\";s:7:\"unicode\";s:8:\"&#xf5d2;\";}s:24:\"fas fa-audio-description\";a:2:{s:3:\"hex\";s:5:\"\\f29e\";s:7:\"unicode\";s:8:\"&#xf29e;\";}s:12:\"fas fa-award\";a:2:{s:3:\"hex\";s:5:\"\\f559\";s:7:\"unicode\";s:8:\"&#xf559;\";}s:11:\"fas fa-baby\";a:2:{s:3:\"hex\";s:5:\"\\f77c\";s:7:\"unicode\";s:8:\"&#xf77c;\";}s:20:\"fas fa-baby-carriage\";a:2:{s:3:\"hex\";s:5:\"\\f77d\";s:7:\"unicode\";s:8:\"&#xf77d;\";}s:16:\"fas fa-backspace\";a:2:{s:3:\"hex\";s:5:\"\\f55a\";s:7:\"unicode\";s:8:\"&#xf55a;\";}s:15:\"fas fa-backward\";a:2:{s:3:\"hex\";s:5:\"\\f04a\";s:7:\"unicode\";s:8:\"&#xf04a;\";}s:12:\"fas fa-bacon\";a:2:{s:3:\"hex\";s:5:\"\\f7e5\";s:7:\"unicode\";s:8:\"&#xf7e5;\";}s:15:\"fas fa-bacteria\";a:2:{s:3:\"hex\";s:5:\"\\e059\";s:7:\"unicode\";s:8:\"&#xe059;\";}s:16:\"fas fa-bacterium\";a:2:{s:3:\"hex\";s:5:\"\\e05a\";s:7:\"unicode\";s:8:\"&#xe05a;\";}s:12:\"fas fa-bahai\";a:2:{s:3:\"hex\";s:5:\"\\f666\";s:7:\"unicode\";s:8:\"&#xf666;\";}s:20:\"fas fa-balance-scale\";a:2:{s:3:\"hex\";s:5:\"\\f24e\";s:7:\"unicode\";s:8:\"&#xf24e;\";}s:25:\"fas fa-balance-scale-left\";a:2:{s:3:\"hex\";s:5:\"\\f515\";s:7:\"unicode\";s:8:\"&#xf515;\";}s:26:\"fas fa-balance-scale-right\";a:2:{s:3:\"hex\";s:5:\"\\f516\";s:7:\"unicode\";s:8:\"&#xf516;\";}s:10:\"fas fa-ban\";a:2:{s:3:\"hex\";s:5:\"\\f05e\";s:7:\"unicode\";s:8:\"&#xf05e;\";}s:15:\"fas fa-band-aid\";a:2:{s:3:\"hex\";s:5:\"\\f462\";s:7:\"unicode\";s:8:\"&#xf462;\";}s:14:\"fas fa-barcode\";a:2:{s:3:\"hex\";s:5:\"\\f02a\";s:7:\"unicode\";s:8:\"&#xf02a;\";}s:11:\"fas fa-bars\";a:2:{s:3:\"hex\";s:5:\"\\f0c9\";s:7:\"unicode\";s:8:\"&#xf0c9;\";}s:20:\"fas fa-baseball-ball\";a:2:{s:3:\"hex\";s:5:\"\\f433\";s:7:\"unicode\";s:8:\"&#xf433;\";}s:22:\"fas fa-basketball-ball\";a:2:{s:3:\"hex\";s:5:\"\\f434\";s:7:\"unicode\";s:8:\"&#xf434;\";}s:11:\"fas fa-bath\";a:2:{s:3:\"hex\";s:5:\"\\f2cd\";s:7:\"unicode\";s:8:\"&#xf2cd;\";}s:20:\"fas fa-battery-empty\";a:2:{s:3:\"hex\";s:5:\"\\f244\";s:7:\"unicode\";s:8:\"&#xf244;\";}s:19:\"fas fa-battery-full\";a:2:{s:3:\"hex\";s:5:\"\\f240\";s:7:\"unicode\";s:8:\"&#xf240;\";}s:19:\"fas fa-battery-half\";a:2:{s:3:\"hex\";s:5:\"\\f242\";s:7:\"unicode\";s:8:\"&#xf242;\";}s:22:\"fas fa-battery-quarter\";a:2:{s:3:\"hex\";s:5:\"\\f243\";s:7:\"unicode\";s:8:\"&#xf243;\";}s:29:\"fas fa-battery-three-quarters\";a:2:{s:3:\"hex\";s:5:\"\\f241\";s:7:\"unicode\";s:8:\"&#xf241;\";}s:10:\"fas fa-bed\";a:2:{s:3:\"hex\";s:5:\"\\f236\";s:7:\"unicode\";s:8:\"&#xf236;\";}s:11:\"fas fa-beer\";a:2:{s:3:\"hex\";s:5:\"\\f0fc\";s:7:\"unicode\";s:8:\"&#xf0fc;\";}s:11:\"fas fa-bell\";a:2:{s:3:\"hex\";s:5:\"\\f0f3\";s:7:\"unicode\";s:8:\"&#xf0f3;\";}s:17:\"fas fa-bell-slash\";a:2:{s:3:\"hex\";s:5:\"\\f1f6\";s:7:\"unicode\";s:8:\"&#xf1f6;\";}s:19:\"fas fa-bezier-curve\";a:2:{s:3:\"hex\";s:5:\"\\f55b\";s:7:\"unicode\";s:8:\"&#xf55b;\";}s:12:\"fas fa-bible\";a:2:{s:3:\"hex\";s:5:\"\\f647\";s:7:\"unicode\";s:8:\"&#xf647;\";}s:14:\"fas fa-bicycle\";a:2:{s:3:\"hex\";s:5:\"\\f206\";s:7:\"unicode\";s:8:\"&#xf206;\";}s:13:\"fas fa-biking\";a:2:{s:3:\"hex\";s:5:\"\\f84a\";s:7:\"unicode\";s:8:\"&#xf84a;\";}s:17:\"fas fa-binoculars\";a:2:{s:3:\"hex\";s:5:\"\\f1e5\";s:7:\"unicode\";s:8:\"&#xf1e5;\";}s:16:\"fas fa-biohazard\";a:2:{s:3:\"hex\";s:5:\"\\f780\";s:7:\"unicode\";s:8:\"&#xf780;\";}s:20:\"fas fa-birthday-cake\";a:2:{s:3:\"hex\";s:5:\"\\f1fd\";s:7:\"unicode\";s:8:\"&#xf1fd;\";}s:14:\"fas fa-blender\";a:2:{s:3:\"hex\";s:5:\"\\f517\";s:7:\"unicode\";s:8:\"&#xf517;\";}s:20:\"fas fa-blender-phone\";a:2:{s:3:\"hex\";s:5:\"\\f6b6\";s:7:\"unicode\";s:8:\"&#xf6b6;\";}s:12:\"fas fa-blind\";a:2:{s:3:\"hex\";s:5:\"\\f29d\";s:7:\"unicode\";s:8:\"&#xf29d;\";}s:11:\"fas fa-blog\";a:2:{s:3:\"hex\";s:5:\"\\f781\";s:7:\"unicode\";s:8:\"&#xf781;\";}s:11:\"fas fa-bold\";a:2:{s:3:\"hex\";s:5:\"\\f032\";s:7:\"unicode\";s:8:\"&#xf032;\";}s:11:\"fas fa-bolt\";a:2:{s:3:\"hex\";s:5:\"\\f0e7\";s:7:\"unicode\";s:8:\"&#xf0e7;\";}s:11:\"fas fa-bomb\";a:2:{s:3:\"hex\";s:5:\"\\f1e2\";s:7:\"unicode\";s:8:\"&#xf1e2;\";}s:11:\"fas fa-bone\";a:2:{s:3:\"hex\";s:5:\"\\f5d7\";s:7:\"unicode\";s:8:\"&#xf5d7;\";}s:11:\"fas fa-bong\";a:2:{s:3:\"hex\";s:5:\"\\f55c\";s:7:\"unicode\";s:8:\"&#xf55c;\";}s:11:\"fas fa-book\";a:2:{s:3:\"hex\";s:5:\"\\f02d\";s:7:\"unicode\";s:8:\"&#xf02d;\";}s:16:\"fas fa-book-dead\";a:2:{s:3:\"hex\";s:5:\"\\f6b7\";s:7:\"unicode\";s:8:\"&#xf6b7;\";}s:19:\"fas fa-book-medical\";a:2:{s:3:\"hex\";s:5:\"\\f7e6\";s:7:\"unicode\";s:8:\"&#xf7e6;\";}s:16:\"fas fa-book-open\";a:2:{s:3:\"hex\";s:5:\"\\f518\";s:7:\"unicode\";s:8:\"&#xf518;\";}s:18:\"fas fa-book-reader\";a:2:{s:3:\"hex\";s:5:\"\\f5da\";s:7:\"unicode\";s:8:\"&#xf5da;\";}s:15:\"fas fa-bookmark\";a:2:{s:3:\"hex\";s:5:\"\\f02e\";s:7:\"unicode\";s:8:\"&#xf02e;\";}s:17:\"fas fa-border-all\";a:2:{s:3:\"hex\";s:5:\"\\f84c\";s:7:\"unicode\";s:8:\"&#xf84c;\";}s:18:\"fas fa-border-none\";a:2:{s:3:\"hex\";s:5:\"\\f850\";s:7:\"unicode\";s:8:\"&#xf850;\";}s:19:\"fas fa-border-style\";a:2:{s:3:\"hex\";s:5:\"\\f853\";s:7:\"unicode\";s:8:\"&#xf853;\";}s:19:\"fas fa-bowling-ball\";a:2:{s:3:\"hex\";s:5:\"\\f436\";s:7:\"unicode\";s:8:\"&#xf436;\";}s:10:\"fas fa-box\";a:2:{s:3:\"hex\";s:5:\"\\f466\";s:7:\"unicode\";s:8:\"&#xf466;\";}s:15:\"fas fa-box-open\";a:2:{s:3:\"hex\";s:5:\"\\f49e\";s:7:\"unicode\";s:8:\"&#xf49e;\";}s:17:\"fas fa-box-tissue\";a:2:{s:3:\"hex\";s:5:\"\\e05b\";s:7:\"unicode\";s:8:\"&#xe05b;\";}s:12:\"fas fa-boxes\";a:2:{s:3:\"hex\";s:5:\"\\f468\";s:7:\"unicode\";s:8:\"&#xf468;\";}s:14:\"fas fa-braille\";a:2:{s:3:\"hex\";s:5:\"\\f2a1\";s:7:\"unicode\";s:8:\"&#xf2a1;\";}s:12:\"fas fa-brain\";a:2:{s:3:\"hex\";s:5:\"\\f5dc\";s:7:\"unicode\";s:8:\"&#xf5dc;\";}s:18:\"fas fa-bread-slice\";a:2:{s:3:\"hex\";s:5:\"\\f7ec\";s:7:\"unicode\";s:8:\"&#xf7ec;\";}s:16:\"fas fa-briefcase\";a:2:{s:3:\"hex\";s:5:\"\\f0b1\";s:7:\"unicode\";s:8:\"&#xf0b1;\";}s:24:\"fas fa-briefcase-medical\";a:2:{s:3:\"hex\";s:5:\"\\f469\";s:7:\"unicode\";s:8:\"&#xf469;\";}s:22:\"fas fa-broadcast-tower\";a:2:{s:3:\"hex\";s:5:\"\\f519\";s:7:\"unicode\";s:8:\"&#xf519;\";}s:12:\"fas fa-broom\";a:2:{s:3:\"hex\";s:5:\"\\f51a\";s:7:\"unicode\";s:8:\"&#xf51a;\";}s:12:\"fas fa-brush\";a:2:{s:3:\"hex\";s:5:\"\\f55d\";s:7:\"unicode\";s:8:\"&#xf55d;\";}s:10:\"fas fa-bug\";a:2:{s:3:\"hex\";s:5:\"\\f188\";s:7:\"unicode\";s:8:\"&#xf188;\";}s:15:\"fas fa-building\";a:2:{s:3:\"hex\";s:5:\"\\f1ad\";s:7:\"unicode\";s:8:\"&#xf1ad;\";}s:15:\"fas fa-bullhorn\";a:2:{s:3:\"hex\";s:5:\"\\f0a1\";s:7:\"unicode\";s:8:\"&#xf0a1;\";}s:15:\"fas fa-bullseye\";a:2:{s:3:\"hex\";s:5:\"\\f140\";s:7:\"unicode\";s:8:\"&#xf140;\";}s:11:\"fas fa-burn\";a:2:{s:3:\"hex\";s:5:\"\\f46a\";s:7:\"unicode\";s:8:\"&#xf46a;\";}s:10:\"fas fa-bus\";a:2:{s:3:\"hex\";s:5:\"\\f207\";s:7:\"unicode\";s:8:\"&#xf207;\";}s:14:\"fas fa-bus-alt\";a:2:{s:3:\"hex\";s:5:\"\\f55e\";s:7:\"unicode\";s:8:\"&#xf55e;\";}s:20:\"fas fa-business-time\";a:2:{s:3:\"hex\";s:5:\"\\f64a\";s:7:\"unicode\";s:8:\"&#xf64a;\";}s:17:\"fas fa-calculator\";a:2:{s:3:\"hex\";s:5:\"\\f1ec\";s:7:\"unicode\";s:8:\"&#xf1ec;\";}s:15:\"fas fa-calendar\";a:2:{s:3:\"hex\";s:5:\"\\f133\";s:7:\"unicode\";s:8:\"&#xf133;\";}s:19:\"fas fa-calendar-alt\";a:2:{s:3:\"hex\";s:5:\"\\f073\";s:7:\"unicode\";s:8:\"&#xf073;\";}s:21:\"fas fa-calendar-check\";a:2:{s:3:\"hex\";s:5:\"\\f274\";s:7:\"unicode\";s:8:\"&#xf274;\";}s:19:\"fas fa-calendar-day\";a:2:{s:3:\"hex\";s:5:\"\\f783\";s:7:\"unicode\";s:8:\"&#xf783;\";}s:21:\"fas fa-calendar-minus\";a:2:{s:3:\"hex\";s:5:\"\\f272\";s:7:\"unicode\";s:8:\"&#xf272;\";}s:20:\"fas fa-calendar-plus\";a:2:{s:3:\"hex\";s:5:\"\\f271\";s:7:\"unicode\";s:8:\"&#xf271;\";}s:21:\"fas fa-calendar-times\";a:2:{s:3:\"hex\";s:5:\"\\f273\";s:7:\"unicode\";s:8:\"&#xf273;\";}s:20:\"fas fa-calendar-week\";a:2:{s:3:\"hex\";s:5:\"\\f784\";s:7:\"unicode\";s:8:\"&#xf784;\";}s:13:\"fas fa-camera\";a:2:{s:3:\"hex\";s:5:\"\\f030\";s:7:\"unicode\";s:8:\"&#xf030;\";}s:19:\"fas fa-camera-retro\";a:2:{s:3:\"hex\";s:5:\"\\f083\";s:7:\"unicode\";s:8:\"&#xf083;\";}s:17:\"fas fa-campground\";a:2:{s:3:\"hex\";s:5:\"\\f6bb\";s:7:\"unicode\";s:8:\"&#xf6bb;\";}s:17:\"fas fa-candy-cane\";a:2:{s:3:\"hex\";s:5:\"\\f786\";s:7:\"unicode\";s:8:\"&#xf786;\";}s:15:\"fas fa-cannabis\";a:2:{s:3:\"hex\";s:5:\"\\f55f\";s:7:\"unicode\";s:8:\"&#xf55f;\";}s:15:\"fas fa-capsules\";a:2:{s:3:\"hex\";s:5:\"\\f46b\";s:7:\"unicode\";s:8:\"&#xf46b;\";}s:10:\"fas fa-car\";a:2:{s:3:\"hex\";s:5:\"\\f1b9\";s:7:\"unicode\";s:8:\"&#xf1b9;\";}s:14:\"fas fa-car-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5de\";s:7:\"unicode\";s:8:\"&#xf5de;\";}s:18:\"fas fa-car-battery\";a:2:{s:3:\"hex\";s:5:\"\\f5df\";s:7:\"unicode\";s:8:\"&#xf5df;\";}s:16:\"fas fa-car-crash\";a:2:{s:3:\"hex\";s:5:\"\\f5e1\";s:7:\"unicode\";s:8:\"&#xf5e1;\";}s:15:\"fas fa-car-side\";a:2:{s:3:\"hex\";s:5:\"\\f5e4\";s:7:\"unicode\";s:8:\"&#xf5e4;\";}s:14:\"fas fa-caravan\";a:2:{s:3:\"hex\";s:5:\"\\f8ff\";s:7:\"unicode\";s:8:\"&#xf8ff;\";}s:17:\"fas fa-caret-down\";a:2:{s:3:\"hex\";s:5:\"\\f0d7\";s:7:\"unicode\";s:8:\"&#xf0d7;\";}s:17:\"fas fa-caret-left\";a:2:{s:3:\"hex\";s:5:\"\\f0d9\";s:7:\"unicode\";s:8:\"&#xf0d9;\";}s:18:\"fas fa-caret-right\";a:2:{s:3:\"hex\";s:5:\"\\f0da\";s:7:\"unicode\";s:8:\"&#xf0da;\";}s:24:\"fas fa-caret-square-down\";a:2:{s:3:\"hex\";s:5:\"\\f150\";s:7:\"unicode\";s:8:\"&#xf150;\";}s:24:\"fas fa-caret-square-left\";a:2:{s:3:\"hex\";s:5:\"\\f191\";s:7:\"unicode\";s:8:\"&#xf191;\";}s:25:\"fas fa-caret-square-right\";a:2:{s:3:\"hex\";s:5:\"\\f152\";s:7:\"unicode\";s:8:\"&#xf152;\";}s:22:\"fas fa-caret-square-up\";a:2:{s:3:\"hex\";s:5:\"\\f151\";s:7:\"unicode\";s:8:\"&#xf151;\";}s:15:\"fas fa-caret-up\";a:2:{s:3:\"hex\";s:5:\"\\f0d8\";s:7:\"unicode\";s:8:\"&#xf0d8;\";}s:13:\"fas fa-carrot\";a:2:{s:3:\"hex\";s:5:\"\\f787\";s:7:\"unicode\";s:8:\"&#xf787;\";}s:22:\"fas fa-cart-arrow-down\";a:2:{s:3:\"hex\";s:5:\"\\f218\";s:7:\"unicode\";s:8:\"&#xf218;\";}s:16:\"fas fa-cart-plus\";a:2:{s:3:\"hex\";s:5:\"\\f217\";s:7:\"unicode\";s:8:\"&#xf217;\";}s:20:\"fas fa-cash-register\";a:2:{s:3:\"hex\";s:5:\"\\f788\";s:7:\"unicode\";s:8:\"&#xf788;\";}s:10:\"fas fa-cat\";a:2:{s:3:\"hex\";s:5:\"\\f6be\";s:7:\"unicode\";s:8:\"&#xf6be;\";}s:18:\"fas fa-certificate\";a:2:{s:3:\"hex\";s:5:\"\\f0a3\";s:7:\"unicode\";s:8:\"&#xf0a3;\";}s:12:\"fas fa-chair\";a:2:{s:3:\"hex\";s:5:\"\\f6c0\";s:7:\"unicode\";s:8:\"&#xf6c0;\";}s:17:\"fas fa-chalkboard\";a:2:{s:3:\"hex\";s:5:\"\\f51b\";s:7:\"unicode\";s:8:\"&#xf51b;\";}s:25:\"fas fa-chalkboard-teacher\";a:2:{s:3:\"hex\";s:5:\"\\f51c\";s:7:\"unicode\";s:8:\"&#xf51c;\";}s:23:\"fas fa-charging-station\";a:2:{s:3:\"hex\";s:5:\"\\f5e7\";s:7:\"unicode\";s:8:\"&#xf5e7;\";}s:17:\"fas fa-chart-area\";a:2:{s:3:\"hex\";s:5:\"\\f1fe\";s:7:\"unicode\";s:8:\"&#xf1fe;\";}s:16:\"fas fa-chart-bar\";a:2:{s:3:\"hex\";s:5:\"\\f080\";s:7:\"unicode\";s:8:\"&#xf080;\";}s:17:\"fas fa-chart-line\";a:2:{s:3:\"hex\";s:5:\"\\f201\";s:7:\"unicode\";s:8:\"&#xf201;\";}s:16:\"fas fa-chart-pie\";a:2:{s:3:\"hex\";s:5:\"\\f200\";s:7:\"unicode\";s:8:\"&#xf200;\";}s:12:\"fas fa-check\";a:2:{s:3:\"hex\";s:5:\"\\f00c\";s:7:\"unicode\";s:8:\"&#xf00c;\";}s:19:\"fas fa-check-circle\";a:2:{s:3:\"hex\";s:5:\"\\f058\";s:7:\"unicode\";s:8:\"&#xf058;\";}s:19:\"fas fa-check-double\";a:2:{s:3:\"hex\";s:5:\"\\f560\";s:7:\"unicode\";s:8:\"&#xf560;\";}s:19:\"fas fa-check-square\";a:2:{s:3:\"hex\";s:5:\"\\f14a\";s:7:\"unicode\";s:8:\"&#xf14a;\";}s:13:\"fas fa-cheese\";a:2:{s:3:\"hex\";s:5:\"\\f7ef\";s:7:\"unicode\";s:8:\"&#xf7ef;\";}s:12:\"fas fa-chess\";a:2:{s:3:\"hex\";s:5:\"\\f439\";s:7:\"unicode\";s:8:\"&#xf439;\";}s:19:\"fas fa-chess-bishop\";a:2:{s:3:\"hex\";s:5:\"\\f43a\";s:7:\"unicode\";s:8:\"&#xf43a;\";}s:18:\"fas fa-chess-board\";a:2:{s:3:\"hex\";s:5:\"\\f43c\";s:7:\"unicode\";s:8:\"&#xf43c;\";}s:17:\"fas fa-chess-king\";a:2:{s:3:\"hex\";s:5:\"\\f43f\";s:7:\"unicode\";s:8:\"&#xf43f;\";}s:19:\"fas fa-chess-knight\";a:2:{s:3:\"hex\";s:5:\"\\f441\";s:7:\"unicode\";s:8:\"&#xf441;\";}s:17:\"fas fa-chess-pawn\";a:2:{s:3:\"hex\";s:5:\"\\f443\";s:7:\"unicode\";s:8:\"&#xf443;\";}s:18:\"fas fa-chess-queen\";a:2:{s:3:\"hex\";s:5:\"\\f445\";s:7:\"unicode\";s:8:\"&#xf445;\";}s:17:\"fas fa-chess-rook\";a:2:{s:3:\"hex\";s:5:\"\\f447\";s:7:\"unicode\";s:8:\"&#xf447;\";}s:26:\"fas fa-chevron-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f13a\";s:7:\"unicode\";s:8:\"&#xf13a;\";}s:26:\"fas fa-chevron-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f137\";s:7:\"unicode\";s:8:\"&#xf137;\";}s:27:\"fas fa-chevron-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f138\";s:7:\"unicode\";s:8:\"&#xf138;\";}s:24:\"fas fa-chevron-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f139\";s:7:\"unicode\";s:8:\"&#xf139;\";}s:19:\"fas fa-chevron-down\";a:2:{s:3:\"hex\";s:5:\"\\f078\";s:7:\"unicode\";s:8:\"&#xf078;\";}s:19:\"fas fa-chevron-left\";a:2:{s:3:\"hex\";s:5:\"\\f053\";s:7:\"unicode\";s:8:\"&#xf053;\";}s:20:\"fas fa-chevron-right\";a:2:{s:3:\"hex\";s:5:\"\\f054\";s:7:\"unicode\";s:8:\"&#xf054;\";}s:17:\"fas fa-chevron-up\";a:2:{s:3:\"hex\";s:5:\"\\f077\";s:7:\"unicode\";s:8:\"&#xf077;\";}s:12:\"fas fa-child\";a:2:{s:3:\"hex\";s:5:\"\\f1ae\";s:7:\"unicode\";s:8:\"&#xf1ae;\";}s:13:\"fas fa-church\";a:2:{s:3:\"hex\";s:5:\"\\f51d\";s:7:\"unicode\";s:8:\"&#xf51d;\";}s:13:\"fas fa-circle\";a:2:{s:3:\"hex\";s:5:\"\\f111\";s:7:\"unicode\";s:8:\"&#xf111;\";}s:19:\"fas fa-circle-notch\";a:2:{s:3:\"hex\";s:5:\"\\f1ce\";s:7:\"unicode\";s:8:\"&#xf1ce;\";}s:11:\"fas fa-city\";a:2:{s:3:\"hex\";s:5:\"\\f64f\";s:7:\"unicode\";s:8:\"&#xf64f;\";}s:21:\"fas fa-clinic-medical\";a:2:{s:3:\"hex\";s:5:\"\\f7f2\";s:7:\"unicode\";s:8:\"&#xf7f2;\";}s:16:\"fas fa-clipboard\";a:2:{s:3:\"hex\";s:5:\"\\f328\";s:7:\"unicode\";s:8:\"&#xf328;\";}s:22:\"fas fa-clipboard-check\";a:2:{s:3:\"hex\";s:5:\"\\f46c\";s:7:\"unicode\";s:8:\"&#xf46c;\";}s:21:\"fas fa-clipboard-list\";a:2:{s:3:\"hex\";s:5:\"\\f46d\";s:7:\"unicode\";s:8:\"&#xf46d;\";}s:12:\"fas fa-clock\";a:2:{s:3:\"hex\";s:5:\"\\f017\";s:7:\"unicode\";s:8:\"&#xf017;\";}s:12:\"fas fa-clone\";a:2:{s:3:\"hex\";s:5:\"\\f24d\";s:7:\"unicode\";s:8:\"&#xf24d;\";}s:24:\"fas fa-closed-captioning\";a:2:{s:3:\"hex\";s:5:\"\\f20a\";s:7:\"unicode\";s:8:\"&#xf20a;\";}s:12:\"fas fa-cloud\";a:2:{s:3:\"hex\";s:5:\"\\f0c2\";s:7:\"unicode\";s:8:\"&#xf0c2;\";}s:25:\"fas fa-cloud-download-alt\";a:2:{s:3:\"hex\";s:5:\"\\f381\";s:7:\"unicode\";s:8:\"&#xf381;\";}s:21:\"fas fa-cloud-meatball\";a:2:{s:3:\"hex\";s:5:\"\\f73b\";s:7:\"unicode\";s:8:\"&#xf73b;\";}s:17:\"fas fa-cloud-moon\";a:2:{s:3:\"hex\";s:5:\"\\f6c3\";s:7:\"unicode\";s:8:\"&#xf6c3;\";}s:22:\"fas fa-cloud-moon-rain\";a:2:{s:3:\"hex\";s:5:\"\\f73c\";s:7:\"unicode\";s:8:\"&#xf73c;\";}s:17:\"fas fa-cloud-rain\";a:2:{s:3:\"hex\";s:5:\"\\f73d\";s:7:\"unicode\";s:8:\"&#xf73d;\";}s:26:\"fas fa-cloud-showers-heavy\";a:2:{s:3:\"hex\";s:5:\"\\f740\";s:7:\"unicode\";s:8:\"&#xf740;\";}s:16:\"fas fa-cloud-sun\";a:2:{s:3:\"hex\";s:5:\"\\f6c4\";s:7:\"unicode\";s:8:\"&#xf6c4;\";}s:21:\"fas fa-cloud-sun-rain\";a:2:{s:3:\"hex\";s:5:\"\\f743\";s:7:\"unicode\";s:8:\"&#xf743;\";}s:23:\"fas fa-cloud-upload-alt\";a:2:{s:3:\"hex\";s:5:\"\\f382\";s:7:\"unicode\";s:8:\"&#xf382;\";}s:15:\"fas fa-cocktail\";a:2:{s:3:\"hex\";s:5:\"\\f561\";s:7:\"unicode\";s:8:\"&#xf561;\";}s:11:\"fas fa-code\";a:2:{s:3:\"hex\";s:5:\"\\f121\";s:7:\"unicode\";s:8:\"&#xf121;\";}s:18:\"fas fa-code-branch\";a:2:{s:3:\"hex\";s:5:\"\\f126\";s:7:\"unicode\";s:8:\"&#xf126;\";}s:13:\"fas fa-coffee\";a:2:{s:3:\"hex\";s:5:\"\\f0f4\";s:7:\"unicode\";s:8:\"&#xf0f4;\";}s:10:\"fas fa-cog\";a:2:{s:3:\"hex\";s:5:\"\\f013\";s:7:\"unicode\";s:8:\"&#xf013;\";}s:11:\"fas fa-cogs\";a:2:{s:3:\"hex\";s:5:\"\\f085\";s:7:\"unicode\";s:8:\"&#xf085;\";}s:12:\"fas fa-coins\";a:2:{s:3:\"hex\";s:5:\"\\f51e\";s:7:\"unicode\";s:8:\"&#xf51e;\";}s:14:\"fas fa-columns\";a:2:{s:3:\"hex\";s:5:\"\\f0db\";s:7:\"unicode\";s:8:\"&#xf0db;\";}s:14:\"fas fa-comment\";a:2:{s:3:\"hex\";s:5:\"\\f075\";s:7:\"unicode\";s:8:\"&#xf075;\";}s:18:\"fas fa-comment-alt\";a:2:{s:3:\"hex\";s:5:\"\\f27a\";s:7:\"unicode\";s:8:\"&#xf27a;\";}s:21:\"fas fa-comment-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f651\";s:7:\"unicode\";s:8:\"&#xf651;\";}s:19:\"fas fa-comment-dots\";a:2:{s:3:\"hex\";s:5:\"\\f4ad\";s:7:\"unicode\";s:8:\"&#xf4ad;\";}s:22:\"fas fa-comment-medical\";a:2:{s:3:\"hex\";s:5:\"\\f7f5\";s:7:\"unicode\";s:8:\"&#xf7f5;\";}s:20:\"fas fa-comment-slash\";a:2:{s:3:\"hex\";s:5:\"\\f4b3\";s:7:\"unicode\";s:8:\"&#xf4b3;\";}s:15:\"fas fa-comments\";a:2:{s:3:\"hex\";s:5:\"\\f086\";s:7:\"unicode\";s:8:\"&#xf086;\";}s:22:\"fas fa-comments-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f653\";s:7:\"unicode\";s:8:\"&#xf653;\";}s:19:\"fas fa-compact-disc\";a:2:{s:3:\"hex\";s:5:\"\\f51f\";s:7:\"unicode\";s:8:\"&#xf51f;\";}s:14:\"fas fa-compass\";a:2:{s:3:\"hex\";s:5:\"\\f14e\";s:7:\"unicode\";s:8:\"&#xf14e;\";}s:15:\"fas fa-compress\";a:2:{s:3:\"hex\";s:5:\"\\f066\";s:7:\"unicode\";s:8:\"&#xf066;\";}s:19:\"fas fa-compress-alt\";a:2:{s:3:\"hex\";s:5:\"\\f422\";s:7:\"unicode\";s:8:\"&#xf422;\";}s:26:\"fas fa-compress-arrows-alt\";a:2:{s:3:\"hex\";s:5:\"\\f78c\";s:7:\"unicode\";s:8:\"&#xf78c;\";}s:21:\"fas fa-concierge-bell\";a:2:{s:3:\"hex\";s:5:\"\\f562\";s:7:\"unicode\";s:8:\"&#xf562;\";}s:13:\"fas fa-cookie\";a:2:{s:3:\"hex\";s:5:\"\\f563\";s:7:\"unicode\";s:8:\"&#xf563;\";}s:18:\"fas fa-cookie-bite\";a:2:{s:3:\"hex\";s:5:\"\\f564\";s:7:\"unicode\";s:8:\"&#xf564;\";}s:11:\"fas fa-copy\";a:2:{s:3:\"hex\";s:5:\"\\f0c5\";s:7:\"unicode\";s:8:\"&#xf0c5;\";}s:16:\"fas fa-copyright\";a:2:{s:3:\"hex\";s:5:\"\\f1f9\";s:7:\"unicode\";s:8:\"&#xf1f9;\";}s:12:\"fas fa-couch\";a:2:{s:3:\"hex\";s:5:\"\\f4b8\";s:7:\"unicode\";s:8:\"&#xf4b8;\";}s:18:\"fas fa-credit-card\";a:2:{s:3:\"hex\";s:5:\"\\f09d\";s:7:\"unicode\";s:8:\"&#xf09d;\";}s:11:\"fas fa-crop\";a:2:{s:3:\"hex\";s:5:\"\\f125\";s:7:\"unicode\";s:8:\"&#xf125;\";}s:15:\"fas fa-crop-alt\";a:2:{s:3:\"hex\";s:5:\"\\f565\";s:7:\"unicode\";s:8:\"&#xf565;\";}s:12:\"fas fa-cross\";a:2:{s:3:\"hex\";s:5:\"\\f654\";s:7:\"unicode\";s:8:\"&#xf654;\";}s:17:\"fas fa-crosshairs\";a:2:{s:3:\"hex\";s:5:\"\\f05b\";s:7:\"unicode\";s:8:\"&#xf05b;\";}s:11:\"fas fa-crow\";a:2:{s:3:\"hex\";s:5:\"\\f520\";s:7:\"unicode\";s:8:\"&#xf520;\";}s:12:\"fas fa-crown\";a:2:{s:3:\"hex\";s:5:\"\\f521\";s:7:\"unicode\";s:8:\"&#xf521;\";}s:13:\"fas fa-crutch\";a:2:{s:3:\"hex\";s:5:\"\\f7f7\";s:7:\"unicode\";s:8:\"&#xf7f7;\";}s:11:\"fas fa-cube\";a:2:{s:3:\"hex\";s:5:\"\\f1b2\";s:7:\"unicode\";s:8:\"&#xf1b2;\";}s:12:\"fas fa-cubes\";a:2:{s:3:\"hex\";s:5:\"\\f1b3\";s:7:\"unicode\";s:8:\"&#xf1b3;\";}s:10:\"fas fa-cut\";a:2:{s:3:\"hex\";s:5:\"\\f0c4\";s:7:\"unicode\";s:8:\"&#xf0c4;\";}s:15:\"fas fa-database\";a:2:{s:3:\"hex\";s:5:\"\\f1c0\";s:7:\"unicode\";s:8:\"&#xf1c0;\";}s:11:\"fas fa-deaf\";a:2:{s:3:\"hex\";s:5:\"\\f2a4\";s:7:\"unicode\";s:8:\"&#xf2a4;\";}s:15:\"fas fa-democrat\";a:2:{s:3:\"hex\";s:5:\"\\f747\";s:7:\"unicode\";s:8:\"&#xf747;\";}s:14:\"fas fa-desktop\";a:2:{s:3:\"hex\";s:5:\"\\f108\";s:7:\"unicode\";s:8:\"&#xf108;\";}s:19:\"fas fa-dharmachakra\";a:2:{s:3:\"hex\";s:5:\"\\f655\";s:7:\"unicode\";s:8:\"&#xf655;\";}s:16:\"fas fa-diagnoses\";a:2:{s:3:\"hex\";s:5:\"\\f470\";s:7:\"unicode\";s:8:\"&#xf470;\";}s:11:\"fas fa-dice\";a:2:{s:3:\"hex\";s:5:\"\\f522\";s:7:\"unicode\";s:8:\"&#xf522;\";}s:15:\"fas fa-dice-d20\";a:2:{s:3:\"hex\";s:5:\"\\f6cf\";s:7:\"unicode\";s:8:\"&#xf6cf;\";}s:14:\"fas fa-dice-d6\";a:2:{s:3:\"hex\";s:5:\"\\f6d1\";s:7:\"unicode\";s:8:\"&#xf6d1;\";}s:16:\"fas fa-dice-five\";a:2:{s:3:\"hex\";s:5:\"\\f523\";s:7:\"unicode\";s:8:\"&#xf523;\";}s:16:\"fas fa-dice-four\";a:2:{s:3:\"hex\";s:5:\"\\f524\";s:7:\"unicode\";s:8:\"&#xf524;\";}s:15:\"fas fa-dice-one\";a:2:{s:3:\"hex\";s:5:\"\\f525\";s:7:\"unicode\";s:8:\"&#xf525;\";}s:15:\"fas fa-dice-six\";a:2:{s:3:\"hex\";s:5:\"\\f526\";s:7:\"unicode\";s:8:\"&#xf526;\";}s:17:\"fas fa-dice-three\";a:2:{s:3:\"hex\";s:5:\"\\f527\";s:7:\"unicode\";s:8:\"&#xf527;\";}s:15:\"fas fa-dice-two\";a:2:{s:3:\"hex\";s:5:\"\\f528\";s:7:\"unicode\";s:8:\"&#xf528;\";}s:25:\"fas fa-digital-tachograph\";a:2:{s:3:\"hex\";s:5:\"\\f566\";s:7:\"unicode\";s:8:\"&#xf566;\";}s:17:\"fas fa-directions\";a:2:{s:3:\"hex\";s:5:\"\\f5eb\";s:7:\"unicode\";s:8:\"&#xf5eb;\";}s:14:\"fas fa-disease\";a:2:{s:3:\"hex\";s:5:\"\\f7fa\";s:7:\"unicode\";s:8:\"&#xf7fa;\";}s:13:\"fas fa-divide\";a:2:{s:3:\"hex\";s:5:\"\\f529\";s:7:\"unicode\";s:8:\"&#xf529;\";}s:12:\"fas fa-dizzy\";a:2:{s:3:\"hex\";s:5:\"\\f567\";s:7:\"unicode\";s:8:\"&#xf567;\";}s:10:\"fas fa-dna\";a:2:{s:3:\"hex\";s:5:\"\\f471\";s:7:\"unicode\";s:8:\"&#xf471;\";}s:10:\"fas fa-dog\";a:2:{s:3:\"hex\";s:5:\"\\f6d3\";s:7:\"unicode\";s:8:\"&#xf6d3;\";}s:18:\"fas fa-dollar-sign\";a:2:{s:3:\"hex\";s:5:\"\\f155\";s:7:\"unicode\";s:8:\"&#xf155;\";}s:12:\"fas fa-dolly\";a:2:{s:3:\"hex\";s:5:\"\\f472\";s:7:\"unicode\";s:8:\"&#xf472;\";}s:20:\"fas fa-dolly-flatbed\";a:2:{s:3:\"hex\";s:5:\"\\f474\";s:7:\"unicode\";s:8:\"&#xf474;\";}s:13:\"fas fa-donate\";a:2:{s:3:\"hex\";s:5:\"\\f4b9\";s:7:\"unicode\";s:8:\"&#xf4b9;\";}s:18:\"fas fa-door-closed\";a:2:{s:3:\"hex\";s:5:\"\\f52a\";s:7:\"unicode\";s:8:\"&#xf52a;\";}s:16:\"fas fa-door-open\";a:2:{s:3:\"hex\";s:5:\"\\f52b\";s:7:\"unicode\";s:8:\"&#xf52b;\";}s:17:\"fas fa-dot-circle\";a:2:{s:3:\"hex\";s:5:\"\\f192\";s:7:\"unicode\";s:8:\"&#xf192;\";}s:11:\"fas fa-dove\";a:2:{s:3:\"hex\";s:5:\"\\f4ba\";s:7:\"unicode\";s:8:\"&#xf4ba;\";}s:15:\"fas fa-download\";a:2:{s:3:\"hex\";s:5:\"\\f019\";s:7:\"unicode\";s:8:\"&#xf019;\";}s:23:\"fas fa-drafting-compass\";a:2:{s:3:\"hex\";s:5:\"\\f568\";s:7:\"unicode\";s:8:\"&#xf568;\";}s:13:\"fas fa-dragon\";a:2:{s:3:\"hex\";s:5:\"\\f6d5\";s:7:\"unicode\";s:8:\"&#xf6d5;\";}s:19:\"fas fa-draw-polygon\";a:2:{s:3:\"hex\";s:5:\"\\f5ee\";s:7:\"unicode\";s:8:\"&#xf5ee;\";}s:11:\"fas fa-drum\";a:2:{s:3:\"hex\";s:5:\"\\f569\";s:7:\"unicode\";s:8:\"&#xf569;\";}s:20:\"fas fa-drum-steelpan\";a:2:{s:3:\"hex\";s:5:\"\\f56a\";s:7:\"unicode\";s:8:\"&#xf56a;\";}s:21:\"fas fa-drumstick-bite\";a:2:{s:3:\"hex\";s:5:\"\\f6d7\";s:7:\"unicode\";s:8:\"&#xf6d7;\";}s:15:\"fas fa-dumbbell\";a:2:{s:3:\"hex\";s:5:\"\\f44b\";s:7:\"unicode\";s:8:\"&#xf44b;\";}s:15:\"fas fa-dumpster\";a:2:{s:3:\"hex\";s:5:\"\\f793\";s:7:\"unicode\";s:8:\"&#xf793;\";}s:20:\"fas fa-dumpster-fire\";a:2:{s:3:\"hex\";s:5:\"\\f794\";s:7:\"unicode\";s:8:\"&#xf794;\";}s:14:\"fas fa-dungeon\";a:2:{s:3:\"hex\";s:5:\"\\f6d9\";s:7:\"unicode\";s:8:\"&#xf6d9;\";}s:11:\"fas fa-edit\";a:2:{s:3:\"hex\";s:5:\"\\f044\";s:7:\"unicode\";s:8:\"&#xf044;\";}s:10:\"fas fa-egg\";a:2:{s:3:\"hex\";s:5:\"\\f7fb\";s:7:\"unicode\";s:8:\"&#xf7fb;\";}s:12:\"fas fa-eject\";a:2:{s:3:\"hex\";s:5:\"\\f052\";s:7:\"unicode\";s:8:\"&#xf052;\";}s:17:\"fas fa-ellipsis-h\";a:2:{s:3:\"hex\";s:5:\"\\f141\";s:7:\"unicode\";s:8:\"&#xf141;\";}s:17:\"fas fa-ellipsis-v\";a:2:{s:3:\"hex\";s:5:\"\\f142\";s:7:\"unicode\";s:8:\"&#xf142;\";}s:15:\"fas fa-envelope\";a:2:{s:3:\"hex\";s:5:\"\\f0e0\";s:7:\"unicode\";s:8:\"&#xf0e0;\";}s:20:\"fas fa-envelope-open\";a:2:{s:3:\"hex\";s:5:\"\\f2b6\";s:7:\"unicode\";s:8:\"&#xf2b6;\";}s:25:\"fas fa-envelope-open-text\";a:2:{s:3:\"hex\";s:5:\"\\f658\";s:7:\"unicode\";s:8:\"&#xf658;\";}s:22:\"fas fa-envelope-square\";a:2:{s:3:\"hex\";s:5:\"\\f199\";s:7:\"unicode\";s:8:\"&#xf199;\";}s:13:\"fas fa-equals\";a:2:{s:3:\"hex\";s:5:\"\\f52c\";s:7:\"unicode\";s:8:\"&#xf52c;\";}s:13:\"fas fa-eraser\";a:2:{s:3:\"hex\";s:5:\"\\f12d\";s:7:\"unicode\";s:8:\"&#xf12d;\";}s:15:\"fas fa-ethernet\";a:2:{s:3:\"hex\";s:5:\"\\f796\";s:7:\"unicode\";s:8:\"&#xf796;\";}s:16:\"fas fa-euro-sign\";a:2:{s:3:\"hex\";s:5:\"\\f153\";s:7:\"unicode\";s:8:\"&#xf153;\";}s:19:\"fas fa-exchange-alt\";a:2:{s:3:\"hex\";s:5:\"\\f362\";s:7:\"unicode\";s:8:\"&#xf362;\";}s:18:\"fas fa-exclamation\";a:2:{s:3:\"hex\";s:5:\"\\f12a\";s:7:\"unicode\";s:8:\"&#xf12a;\";}s:25:\"fas fa-exclamation-circle\";a:2:{s:3:\"hex\";s:5:\"\\f06a\";s:7:\"unicode\";s:8:\"&#xf06a;\";}s:27:\"fas fa-exclamation-triangle\";a:2:{s:3:\"hex\";s:5:\"\\f071\";s:7:\"unicode\";s:8:\"&#xf071;\";}s:13:\"fas fa-expand\";a:2:{s:3:\"hex\";s:5:\"\\f065\";s:7:\"unicode\";s:8:\"&#xf065;\";}s:17:\"fas fa-expand-alt\";a:2:{s:3:\"hex\";s:5:\"\\f424\";s:7:\"unicode\";s:8:\"&#xf424;\";}s:24:\"fas fa-expand-arrows-alt\";a:2:{s:3:\"hex\";s:5:\"\\f31e\";s:7:\"unicode\";s:8:\"&#xf31e;\";}s:24:\"fas fa-external-link-alt\";a:2:{s:3:\"hex\";s:5:\"\\f35d\";s:7:\"unicode\";s:8:\"&#xf35d;\";}s:31:\"fas fa-external-link-square-alt\";a:2:{s:3:\"hex\";s:5:\"\\f360\";s:7:\"unicode\";s:8:\"&#xf360;\";}s:10:\"fas fa-eye\";a:2:{s:3:\"hex\";s:5:\"\\f06e\";s:7:\"unicode\";s:8:\"&#xf06e;\";}s:18:\"fas fa-eye-dropper\";a:2:{s:3:\"hex\";s:5:\"\\f1fb\";s:7:\"unicode\";s:8:\"&#xf1fb;\";}s:16:\"fas fa-eye-slash\";a:2:{s:3:\"hex\";s:5:\"\\f070\";s:7:\"unicode\";s:8:\"&#xf070;\";}s:10:\"fas fa-fan\";a:2:{s:3:\"hex\";s:5:\"\\f863\";s:7:\"unicode\";s:8:\"&#xf863;\";}s:20:\"fas fa-fast-backward\";a:2:{s:3:\"hex\";s:5:\"\\f049\";s:7:\"unicode\";s:8:\"&#xf049;\";}s:19:\"fas fa-fast-forward\";a:2:{s:3:\"hex\";s:5:\"\\f050\";s:7:\"unicode\";s:8:\"&#xf050;\";}s:13:\"fas fa-faucet\";a:2:{s:3:\"hex\";s:5:\"\\e005\";s:7:\"unicode\";s:8:\"&#xe005;\";}s:10:\"fas fa-fax\";a:2:{s:3:\"hex\";s:5:\"\\f1ac\";s:7:\"unicode\";s:8:\"&#xf1ac;\";}s:14:\"fas fa-feather\";a:2:{s:3:\"hex\";s:5:\"\\f52d\";s:7:\"unicode\";s:8:\"&#xf52d;\";}s:18:\"fas fa-feather-alt\";a:2:{s:3:\"hex\";s:5:\"\\f56b\";s:7:\"unicode\";s:8:\"&#xf56b;\";}s:13:\"fas fa-female\";a:2:{s:3:\"hex\";s:5:\"\\f182\";s:7:\"unicode\";s:8:\"&#xf182;\";}s:18:\"fas fa-fighter-jet\";a:2:{s:3:\"hex\";s:5:\"\\f0fb\";s:7:\"unicode\";s:8:\"&#xf0fb;\";}s:11:\"fas fa-file\";a:2:{s:3:\"hex\";s:5:\"\\f15b\";s:7:\"unicode\";s:8:\"&#xf15b;\";}s:15:\"fas fa-file-alt\";a:2:{s:3:\"hex\";s:5:\"\\f15c\";s:7:\"unicode\";s:8:\"&#xf15c;\";}s:19:\"fas fa-file-archive\";a:2:{s:3:\"hex\";s:5:\"\\f1c6\";s:7:\"unicode\";s:8:\"&#xf1c6;\";}s:17:\"fas fa-file-audio\";a:2:{s:3:\"hex\";s:5:\"\\f1c7\";s:7:\"unicode\";s:8:\"&#xf1c7;\";}s:16:\"fas fa-file-code\";a:2:{s:3:\"hex\";s:5:\"\\f1c9\";s:7:\"unicode\";s:8:\"&#xf1c9;\";}s:20:\"fas fa-file-contract\";a:2:{s:3:\"hex\";s:5:\"\\f56c\";s:7:\"unicode\";s:8:\"&#xf56c;\";}s:15:\"fas fa-file-csv\";a:2:{s:3:\"hex\";s:5:\"\\f6dd\";s:7:\"unicode\";s:8:\"&#xf6dd;\";}s:20:\"fas fa-file-download\";a:2:{s:3:\"hex\";s:5:\"\\f56d\";s:7:\"unicode\";s:8:\"&#xf56d;\";}s:17:\"fas fa-file-excel\";a:2:{s:3:\"hex\";s:5:\"\\f1c3\";s:7:\"unicode\";s:8:\"&#xf1c3;\";}s:18:\"fas fa-file-export\";a:2:{s:3:\"hex\";s:5:\"\\f56e\";s:7:\"unicode\";s:8:\"&#xf56e;\";}s:17:\"fas fa-file-image\";a:2:{s:3:\"hex\";s:5:\"\\f1c5\";s:7:\"unicode\";s:8:\"&#xf1c5;\";}s:18:\"fas fa-file-import\";a:2:{s:3:\"hex\";s:5:\"\\f56f\";s:7:\"unicode\";s:8:\"&#xf56f;\";}s:19:\"fas fa-file-invoice\";a:2:{s:3:\"hex\";s:5:\"\\f570\";s:7:\"unicode\";s:8:\"&#xf570;\";}s:26:\"fas fa-file-invoice-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f571\";s:7:\"unicode\";s:8:\"&#xf571;\";}s:19:\"fas fa-file-medical\";a:2:{s:3:\"hex\";s:5:\"\\f477\";s:7:\"unicode\";s:8:\"&#xf477;\";}s:23:\"fas fa-file-medical-alt\";a:2:{s:3:\"hex\";s:5:\"\\f478\";s:7:\"unicode\";s:8:\"&#xf478;\";}s:15:\"fas fa-file-pdf\";a:2:{s:3:\"hex\";s:5:\"\\f1c1\";s:7:\"unicode\";s:8:\"&#xf1c1;\";}s:22:\"fas fa-file-powerpoint\";a:2:{s:3:\"hex\";s:5:\"\\f1c4\";s:7:\"unicode\";s:8:\"&#xf1c4;\";}s:24:\"fas fa-file-prescription\";a:2:{s:3:\"hex\";s:5:\"\\f572\";s:7:\"unicode\";s:8:\"&#xf572;\";}s:21:\"fas fa-file-signature\";a:2:{s:3:\"hex\";s:5:\"\\f573\";s:7:\"unicode\";s:8:\"&#xf573;\";}s:18:\"fas fa-file-upload\";a:2:{s:3:\"hex\";s:5:\"\\f574\";s:7:\"unicode\";s:8:\"&#xf574;\";}s:17:\"fas fa-file-video\";a:2:{s:3:\"hex\";s:5:\"\\f1c8\";s:7:\"unicode\";s:8:\"&#xf1c8;\";}s:16:\"fas fa-file-word\";a:2:{s:3:\"hex\";s:5:\"\\f1c2\";s:7:\"unicode\";s:8:\"&#xf1c2;\";}s:11:\"fas fa-fill\";a:2:{s:3:\"hex\";s:5:\"\\f575\";s:7:\"unicode\";s:8:\"&#xf575;\";}s:16:\"fas fa-fill-drip\";a:2:{s:3:\"hex\";s:5:\"\\f576\";s:7:\"unicode\";s:8:\"&#xf576;\";}s:11:\"fas fa-film\";a:2:{s:3:\"hex\";s:5:\"\\f008\";s:7:\"unicode\";s:8:\"&#xf008;\";}s:13:\"fas fa-filter\";a:2:{s:3:\"hex\";s:5:\"\\f0b0\";s:7:\"unicode\";s:8:\"&#xf0b0;\";}s:18:\"fas fa-fingerprint\";a:2:{s:3:\"hex\";s:5:\"\\f577\";s:7:\"unicode\";s:8:\"&#xf577;\";}s:11:\"fas fa-fire\";a:2:{s:3:\"hex\";s:5:\"\\f06d\";s:7:\"unicode\";s:8:\"&#xf06d;\";}s:15:\"fas fa-fire-alt\";a:2:{s:3:\"hex\";s:5:\"\\f7e4\";s:7:\"unicode\";s:8:\"&#xf7e4;\";}s:24:\"fas fa-fire-extinguisher\";a:2:{s:3:\"hex\";s:5:\"\\f134\";s:7:\"unicode\";s:8:\"&#xf134;\";}s:16:\"fas fa-first-aid\";a:2:{s:3:\"hex\";s:5:\"\\f479\";s:7:\"unicode\";s:8:\"&#xf479;\";}s:11:\"fas fa-fish\";a:2:{s:3:\"hex\";s:5:\"\\f578\";s:7:\"unicode\";s:8:\"&#xf578;\";}s:18:\"fas fa-fist-raised\";a:2:{s:3:\"hex\";s:5:\"\\f6de\";s:7:\"unicode\";s:8:\"&#xf6de;\";}s:11:\"fas fa-flag\";a:2:{s:3:\"hex\";s:5:\"\\f024\";s:7:\"unicode\";s:8:\"&#xf024;\";}s:21:\"fas fa-flag-checkered\";a:2:{s:3:\"hex\";s:5:\"\\f11e\";s:7:\"unicode\";s:8:\"&#xf11e;\";}s:15:\"fas fa-flag-usa\";a:2:{s:3:\"hex\";s:5:\"\\f74d\";s:7:\"unicode\";s:8:\"&#xf74d;\";}s:12:\"fas fa-flask\";a:2:{s:3:\"hex\";s:5:\"\\f0c3\";s:7:\"unicode\";s:8:\"&#xf0c3;\";}s:14:\"fas fa-flushed\";a:2:{s:3:\"hex\";s:5:\"\\f579\";s:7:\"unicode\";s:8:\"&#xf579;\";}s:13:\"fas fa-folder\";a:2:{s:3:\"hex\";s:5:\"\\f07b\";s:7:\"unicode\";s:8:\"&#xf07b;\";}s:19:\"fas fa-folder-minus\";a:2:{s:3:\"hex\";s:5:\"\\f65d\";s:7:\"unicode\";s:8:\"&#xf65d;\";}s:18:\"fas fa-folder-open\";a:2:{s:3:\"hex\";s:5:\"\\f07c\";s:7:\"unicode\";s:8:\"&#xf07c;\";}s:18:\"fas fa-folder-plus\";a:2:{s:3:\"hex\";s:5:\"\\f65e\";s:7:\"unicode\";s:8:\"&#xf65e;\";}s:11:\"fas fa-font\";a:2:{s:3:\"hex\";s:5:\"\\f031\";s:7:\"unicode\";s:8:\"&#xf031;\";}s:29:\"fas fa-font-awesome-logo-full\";a:2:{s:3:\"hex\";s:5:\"\\f4e6\";s:7:\"unicode\";s:8:\"&#xf4e6;\";}s:20:\"fas fa-football-ball\";a:2:{s:3:\"hex\";s:5:\"\\f44e\";s:7:\"unicode\";s:8:\"&#xf44e;\";}s:14:\"fas fa-forward\";a:2:{s:3:\"hex\";s:5:\"\\f04e\";s:7:\"unicode\";s:8:\"&#xf04e;\";}s:11:\"fas fa-frog\";a:2:{s:3:\"hex\";s:5:\"\\f52e\";s:7:\"unicode\";s:8:\"&#xf52e;\";}s:12:\"fas fa-frown\";a:2:{s:3:\"hex\";s:5:\"\\f119\";s:7:\"unicode\";s:8:\"&#xf119;\";}s:17:\"fas fa-frown-open\";a:2:{s:3:\"hex\";s:5:\"\\f57a\";s:7:\"unicode\";s:8:\"&#xf57a;\";}s:20:\"fas fa-funnel-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f662\";s:7:\"unicode\";s:8:\"&#xf662;\";}s:13:\"fas fa-futbol\";a:2:{s:3:\"hex\";s:5:\"\\f1e3\";s:7:\"unicode\";s:8:\"&#xf1e3;\";}s:14:\"fas fa-gamepad\";a:2:{s:3:\"hex\";s:5:\"\\f11b\";s:7:\"unicode\";s:8:\"&#xf11b;\";}s:15:\"fas fa-gas-pump\";a:2:{s:3:\"hex\";s:5:\"\\f52f\";s:7:\"unicode\";s:8:\"&#xf52f;\";}s:12:\"fas fa-gavel\";a:2:{s:3:\"hex\";s:5:\"\\f0e3\";s:7:\"unicode\";s:8:\"&#xf0e3;\";}s:10:\"fas fa-gem\";a:2:{s:3:\"hex\";s:5:\"\\f3a5\";s:7:\"unicode\";s:8:\"&#xf3a5;\";}s:17:\"fas fa-genderless\";a:2:{s:3:\"hex\";s:5:\"\\f22d\";s:7:\"unicode\";s:8:\"&#xf22d;\";}s:12:\"fas fa-ghost\";a:2:{s:3:\"hex\";s:5:\"\\f6e2\";s:7:\"unicode\";s:8:\"&#xf6e2;\";}s:11:\"fas fa-gift\";a:2:{s:3:\"hex\";s:5:\"\\f06b\";s:7:\"unicode\";s:8:\"&#xf06b;\";}s:12:\"fas fa-gifts\";a:2:{s:3:\"hex\";s:5:\"\\f79c\";s:7:\"unicode\";s:8:\"&#xf79c;\";}s:19:\"fas fa-glass-cheers\";a:2:{s:3:\"hex\";s:5:\"\\f79f\";s:7:\"unicode\";s:8:\"&#xf79f;\";}s:20:\"fas fa-glass-martini\";a:2:{s:3:\"hex\";s:5:\"\\f000\";s:7:\"unicode\";s:8:\"&#xf000;\";}s:24:\"fas fa-glass-martini-alt\";a:2:{s:3:\"hex\";s:5:\"\\f57b\";s:7:\"unicode\";s:8:\"&#xf57b;\";}s:20:\"fas fa-glass-whiskey\";a:2:{s:3:\"hex\";s:5:\"\\f7a0\";s:7:\"unicode\";s:8:\"&#xf7a0;\";}s:14:\"fas fa-glasses\";a:2:{s:3:\"hex\";s:5:\"\\f530\";s:7:\"unicode\";s:8:\"&#xf530;\";}s:12:\"fas fa-globe\";a:2:{s:3:\"hex\";s:5:\"\\f0ac\";s:7:\"unicode\";s:8:\"&#xf0ac;\";}s:19:\"fas fa-globe-africa\";a:2:{s:3:\"hex\";s:5:\"\\f57c\";s:7:\"unicode\";s:8:\"&#xf57c;\";}s:21:\"fas fa-globe-americas\";a:2:{s:3:\"hex\";s:5:\"\\f57d\";s:7:\"unicode\";s:8:\"&#xf57d;\";}s:17:\"fas fa-globe-asia\";a:2:{s:3:\"hex\";s:5:\"\\f57e\";s:7:\"unicode\";s:8:\"&#xf57e;\";}s:19:\"fas fa-globe-europe\";a:2:{s:3:\"hex\";s:5:\"\\f7a2\";s:7:\"unicode\";s:8:\"&#xf7a2;\";}s:16:\"fas fa-golf-ball\";a:2:{s:3:\"hex\";s:5:\"\\f450\";s:7:\"unicode\";s:8:\"&#xf450;\";}s:14:\"fas fa-gopuram\";a:2:{s:3:\"hex\";s:5:\"\\f664\";s:7:\"unicode\";s:8:\"&#xf664;\";}s:21:\"fas fa-graduation-cap\";a:2:{s:3:\"hex\";s:5:\"\\f19d\";s:7:\"unicode\";s:8:\"&#xf19d;\";}s:19:\"fas fa-greater-than\";a:2:{s:3:\"hex\";s:5:\"\\f531\";s:7:\"unicode\";s:8:\"&#xf531;\";}s:25:\"fas fa-greater-than-equal\";a:2:{s:3:\"hex\";s:5:\"\\f532\";s:7:\"unicode\";s:8:\"&#xf532;\";}s:14:\"fas fa-grimace\";a:2:{s:3:\"hex\";s:5:\"\\f57f\";s:7:\"unicode\";s:8:\"&#xf57f;\";}s:11:\"fas fa-grin\";a:2:{s:3:\"hex\";s:5:\"\\f580\";s:7:\"unicode\";s:8:\"&#xf580;\";}s:15:\"fas fa-grin-alt\";a:2:{s:3:\"hex\";s:5:\"\\f581\";s:7:\"unicode\";s:8:\"&#xf581;\";}s:16:\"fas fa-grin-beam\";a:2:{s:3:\"hex\";s:5:\"\\f582\";s:7:\"unicode\";s:8:\"&#xf582;\";}s:22:\"fas fa-grin-beam-sweat\";a:2:{s:3:\"hex\";s:5:\"\\f583\";s:7:\"unicode\";s:8:\"&#xf583;\";}s:18:\"fas fa-grin-hearts\";a:2:{s:3:\"hex\";s:5:\"\\f584\";s:7:\"unicode\";s:8:\"&#xf584;\";}s:18:\"fas fa-grin-squint\";a:2:{s:3:\"hex\";s:5:\"\\f585\";s:7:\"unicode\";s:8:\"&#xf585;\";}s:24:\"fas fa-grin-squint-tears\";a:2:{s:3:\"hex\";s:5:\"\\f586\";s:7:\"unicode\";s:8:\"&#xf586;\";}s:17:\"fas fa-grin-stars\";a:2:{s:3:\"hex\";s:5:\"\\f587\";s:7:\"unicode\";s:8:\"&#xf587;\";}s:17:\"fas fa-grin-tears\";a:2:{s:3:\"hex\";s:5:\"\\f588\";s:7:\"unicode\";s:8:\"&#xf588;\";}s:18:\"fas fa-grin-tongue\";a:2:{s:3:\"hex\";s:5:\"\\f589\";s:7:\"unicode\";s:8:\"&#xf589;\";}s:25:\"fas fa-grin-tongue-squint\";a:2:{s:3:\"hex\";s:5:\"\\f58a\";s:7:\"unicode\";s:8:\"&#xf58a;\";}s:23:\"fas fa-grin-tongue-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58b\";s:7:\"unicode\";s:8:\"&#xf58b;\";}s:16:\"fas fa-grin-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58c\";s:7:\"unicode\";s:8:\"&#xf58c;\";}s:22:\"fas fa-grip-horizontal\";a:2:{s:3:\"hex\";s:5:\"\\f58d\";s:7:\"unicode\";s:8:\"&#xf58d;\";}s:17:\"fas fa-grip-lines\";a:2:{s:3:\"hex\";s:5:\"\\f7a4\";s:7:\"unicode\";s:8:\"&#xf7a4;\";}s:26:\"fas fa-grip-lines-vertical\";a:2:{s:3:\"hex\";s:5:\"\\f7a5\";s:7:\"unicode\";s:8:\"&#xf7a5;\";}s:20:\"fas fa-grip-vertical\";a:2:{s:3:\"hex\";s:5:\"\\f58e\";s:7:\"unicode\";s:8:\"&#xf58e;\";}s:13:\"fas fa-guitar\";a:2:{s:3:\"hex\";s:5:\"\\f7a6\";s:7:\"unicode\";s:8:\"&#xf7a6;\";}s:15:\"fas fa-h-square\";a:2:{s:3:\"hex\";s:5:\"\\f0fd\";s:7:\"unicode\";s:8:\"&#xf0fd;\";}s:16:\"fas fa-hamburger\";a:2:{s:3:\"hex\";s:5:\"\\f805\";s:7:\"unicode\";s:8:\"&#xf805;\";}s:13:\"fas fa-hammer\";a:2:{s:3:\"hex\";s:5:\"\\f6e3\";s:7:\"unicode\";s:8:\"&#xf6e3;\";}s:12:\"fas fa-hamsa\";a:2:{s:3:\"hex\";s:5:\"\\f665\";s:7:\"unicode\";s:8:\"&#xf665;\";}s:19:\"fas fa-hand-holding\";a:2:{s:3:\"hex\";s:5:\"\\f4bd\";s:7:\"unicode\";s:8:\"&#xf4bd;\";}s:25:\"fas fa-hand-holding-heart\";a:2:{s:3:\"hex\";s:5:\"\\f4be\";s:7:\"unicode\";s:8:\"&#xf4be;\";}s:27:\"fas fa-hand-holding-medical\";a:2:{s:3:\"hex\";s:5:\"\\e05c\";s:7:\"unicode\";s:8:\"&#xe05c;\";}s:23:\"fas fa-hand-holding-usd\";a:2:{s:3:\"hex\";s:5:\"\\f4c0\";s:7:\"unicode\";s:8:\"&#xf4c0;\";}s:25:\"fas fa-hand-holding-water\";a:2:{s:3:\"hex\";s:5:\"\\f4c1\";s:7:\"unicode\";s:8:\"&#xf4c1;\";}s:18:\"fas fa-hand-lizard\";a:2:{s:3:\"hex\";s:5:\"\\f258\";s:7:\"unicode\";s:8:\"&#xf258;\";}s:25:\"fas fa-hand-middle-finger\";a:2:{s:3:\"hex\";s:5:\"\\f806\";s:7:\"unicode\";s:8:\"&#xf806;\";}s:17:\"fas fa-hand-paper\";a:2:{s:3:\"hex\";s:5:\"\\f256\";s:7:\"unicode\";s:8:\"&#xf256;\";}s:17:\"fas fa-hand-peace\";a:2:{s:3:\"hex\";s:5:\"\\f25b\";s:7:\"unicode\";s:8:\"&#xf25b;\";}s:22:\"fas fa-hand-point-down\";a:2:{s:3:\"hex\";s:5:\"\\f0a7\";s:7:\"unicode\";s:8:\"&#xf0a7;\";}s:22:\"fas fa-hand-point-left\";a:2:{s:3:\"hex\";s:5:\"\\f0a5\";s:7:\"unicode\";s:8:\"&#xf0a5;\";}s:23:\"fas fa-hand-point-right\";a:2:{s:3:\"hex\";s:5:\"\\f0a4\";s:7:\"unicode\";s:8:\"&#xf0a4;\";}s:20:\"fas fa-hand-point-up\";a:2:{s:3:\"hex\";s:5:\"\\f0a6\";s:7:\"unicode\";s:8:\"&#xf0a6;\";}s:19:\"fas fa-hand-pointer\";a:2:{s:3:\"hex\";s:5:\"\\f25a\";s:7:\"unicode\";s:8:\"&#xf25a;\";}s:16:\"fas fa-hand-rock\";a:2:{s:3:\"hex\";s:5:\"\\f255\";s:7:\"unicode\";s:8:\"&#xf255;\";}s:20:\"fas fa-hand-scissors\";a:2:{s:3:\"hex\";s:5:\"\\f257\";s:7:\"unicode\";s:8:\"&#xf257;\";}s:20:\"fas fa-hand-sparkles\";a:2:{s:3:\"hex\";s:5:\"\\e05d\";s:7:\"unicode\";s:8:\"&#xe05d;\";}s:17:\"fas fa-hand-spock\";a:2:{s:3:\"hex\";s:5:\"\\f259\";s:7:\"unicode\";s:8:\"&#xf259;\";}s:12:\"fas fa-hands\";a:2:{s:3:\"hex\";s:5:\"\\f4c2\";s:7:\"unicode\";s:8:\"&#xf4c2;\";}s:20:\"fas fa-hands-helping\";a:2:{s:3:\"hex\";s:5:\"\\f4c4\";s:7:\"unicode\";s:8:\"&#xf4c4;\";}s:17:\"fas fa-hands-wash\";a:2:{s:3:\"hex\";s:5:\"\\e05e\";s:7:\"unicode\";s:8:\"&#xe05e;\";}s:16:\"fas fa-handshake\";a:2:{s:3:\"hex\";s:5:\"\\f2b5\";s:7:\"unicode\";s:8:\"&#xf2b5;\";}s:26:\"fas fa-handshake-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\e05f\";s:7:\"unicode\";s:8:\"&#xe05f;\";}s:22:\"fas fa-handshake-slash\";a:2:{s:3:\"hex\";s:5:\"\\e060\";s:7:\"unicode\";s:8:\"&#xe060;\";}s:15:\"fas fa-hanukiah\";a:2:{s:3:\"hex\";s:5:\"\\f6e6\";s:7:\"unicode\";s:8:\"&#xf6e6;\";}s:15:\"fas fa-hard-hat\";a:2:{s:3:\"hex\";s:5:\"\\f807\";s:7:\"unicode\";s:8:\"&#xf807;\";}s:14:\"fas fa-hashtag\";a:2:{s:3:\"hex\";s:5:\"\\f292\";s:7:\"unicode\";s:8:\"&#xf292;\";}s:17:\"fas fa-hat-cowboy\";a:2:{s:3:\"hex\";s:5:\"\\f8c0\";s:7:\"unicode\";s:8:\"&#xf8c0;\";}s:22:\"fas fa-hat-cowboy-side\";a:2:{s:3:\"hex\";s:5:\"\\f8c1\";s:7:\"unicode\";s:8:\"&#xf8c1;\";}s:17:\"fas fa-hat-wizard\";a:2:{s:3:\"hex\";s:5:\"\\f6e8\";s:7:\"unicode\";s:8:\"&#xf6e8;\";}s:10:\"fas fa-hdd\";a:2:{s:3:\"hex\";s:5:\"\\f0a0\";s:7:\"unicode\";s:8:\"&#xf0a0;\";}s:22:\"fas fa-head-side-cough\";a:2:{s:3:\"hex\";s:5:\"\\e061\";s:7:\"unicode\";s:8:\"&#xe061;\";}s:28:\"fas fa-head-side-cough-slash\";a:2:{s:3:\"hex\";s:5:\"\\e062\";s:7:\"unicode\";s:8:\"&#xe062;\";}s:21:\"fas fa-head-side-mask\";a:2:{s:3:\"hex\";s:5:\"\\e063\";s:7:\"unicode\";s:8:\"&#xe063;\";}s:22:\"fas fa-head-side-virus\";a:2:{s:3:\"hex\";s:5:\"\\e064\";s:7:\"unicode\";s:8:\"&#xe064;\";}s:14:\"fas fa-heading\";a:2:{s:3:\"hex\";s:5:\"\\f1dc\";s:7:\"unicode\";s:8:\"&#xf1dc;\";}s:17:\"fas fa-headphones\";a:2:{s:3:\"hex\";s:5:\"\\f025\";s:7:\"unicode\";s:8:\"&#xf025;\";}s:21:\"fas fa-headphones-alt\";a:2:{s:3:\"hex\";s:5:\"\\f58f\";s:7:\"unicode\";s:8:\"&#xf58f;\";}s:14:\"fas fa-headset\";a:2:{s:3:\"hex\";s:5:\"\\f590\";s:7:\"unicode\";s:8:\"&#xf590;\";}s:12:\"fas fa-heart\";a:2:{s:3:\"hex\";s:5:\"\\f004\";s:7:\"unicode\";s:8:\"&#xf004;\";}s:19:\"fas fa-heart-broken\";a:2:{s:3:\"hex\";s:5:\"\\f7a9\";s:7:\"unicode\";s:8:\"&#xf7a9;\";}s:16:\"fas fa-heartbeat\";a:2:{s:3:\"hex\";s:5:\"\\f21e\";s:7:\"unicode\";s:8:\"&#xf21e;\";}s:17:\"fas fa-helicopter\";a:2:{s:3:\"hex\";s:5:\"\\f533\";s:7:\"unicode\";s:8:\"&#xf533;\";}s:18:\"fas fa-highlighter\";a:2:{s:3:\"hex\";s:5:\"\\f591\";s:7:\"unicode\";s:8:\"&#xf591;\";}s:13:\"fas fa-hiking\";a:2:{s:3:\"hex\";s:5:\"\\f6ec\";s:7:\"unicode\";s:8:\"&#xf6ec;\";}s:12:\"fas fa-hippo\";a:2:{s:3:\"hex\";s:5:\"\\f6ed\";s:7:\"unicode\";s:8:\"&#xf6ed;\";}s:14:\"fas fa-history\";a:2:{s:3:\"hex\";s:5:\"\\f1da\";s:7:\"unicode\";s:8:\"&#xf1da;\";}s:18:\"fas fa-hockey-puck\";a:2:{s:3:\"hex\";s:5:\"\\f453\";s:7:\"unicode\";s:8:\"&#xf453;\";}s:18:\"fas fa-holly-berry\";a:2:{s:3:\"hex\";s:5:\"\\f7aa\";s:7:\"unicode\";s:8:\"&#xf7aa;\";}s:11:\"fas fa-home\";a:2:{s:3:\"hex\";s:5:\"\\f015\";s:7:\"unicode\";s:8:\"&#xf015;\";}s:12:\"fas fa-horse\";a:2:{s:3:\"hex\";s:5:\"\\f6f0\";s:7:\"unicode\";s:8:\"&#xf6f0;\";}s:17:\"fas fa-horse-head\";a:2:{s:3:\"hex\";s:5:\"\\f7ab\";s:7:\"unicode\";s:8:\"&#xf7ab;\";}s:15:\"fas fa-hospital\";a:2:{s:3:\"hex\";s:5:\"\\f0f8\";s:7:\"unicode\";s:8:\"&#xf0f8;\";}s:19:\"fas fa-hospital-alt\";a:2:{s:3:\"hex\";s:5:\"\\f47d\";s:7:\"unicode\";s:8:\"&#xf47d;\";}s:22:\"fas fa-hospital-symbol\";a:2:{s:3:\"hex\";s:5:\"\\f47e\";s:7:\"unicode\";s:8:\"&#xf47e;\";}s:20:\"fas fa-hospital-user\";a:2:{s:3:\"hex\";s:5:\"\\f80d\";s:7:\"unicode\";s:8:\"&#xf80d;\";}s:14:\"fas fa-hot-tub\";a:2:{s:3:\"hex\";s:5:\"\\f593\";s:7:\"unicode\";s:8:\"&#xf593;\";}s:13:\"fas fa-hotdog\";a:2:{s:3:\"hex\";s:5:\"\\f80f\";s:7:\"unicode\";s:8:\"&#xf80f;\";}s:12:\"fas fa-hotel\";a:2:{s:3:\"hex\";s:5:\"\\f594\";s:7:\"unicode\";s:8:\"&#xf594;\";}s:16:\"fas fa-hourglass\";a:2:{s:3:\"hex\";s:5:\"\\f254\";s:7:\"unicode\";s:8:\"&#xf254;\";}s:20:\"fas fa-hourglass-end\";a:2:{s:3:\"hex\";s:5:\"\\f253\";s:7:\"unicode\";s:8:\"&#xf253;\";}s:21:\"fas fa-hourglass-half\";a:2:{s:3:\"hex\";s:5:\"\\f252\";s:7:\"unicode\";s:8:\"&#xf252;\";}s:22:\"fas fa-hourglass-start\";a:2:{s:3:\"hex\";s:5:\"\\f251\";s:7:\"unicode\";s:8:\"&#xf251;\";}s:19:\"fas fa-house-damage\";a:2:{s:3:\"hex\";s:5:\"\\f6f1\";s:7:\"unicode\";s:8:\"&#xf6f1;\";}s:17:\"fas fa-house-user\";a:2:{s:3:\"hex\";s:5:\"\\e065\";s:7:\"unicode\";s:8:\"&#xe065;\";}s:14:\"fas fa-hryvnia\";a:2:{s:3:\"hex\";s:5:\"\\f6f2\";s:7:\"unicode\";s:8:\"&#xf6f2;\";}s:15:\"fas fa-i-cursor\";a:2:{s:3:\"hex\";s:5:\"\\f246\";s:7:\"unicode\";s:8:\"&#xf246;\";}s:16:\"fas fa-ice-cream\";a:2:{s:3:\"hex\";s:5:\"\\f810\";s:7:\"unicode\";s:8:\"&#xf810;\";}s:14:\"fas fa-icicles\";a:2:{s:3:\"hex\";s:5:\"\\f7ad\";s:7:\"unicode\";s:8:\"&#xf7ad;\";}s:12:\"fas fa-icons\";a:2:{s:3:\"hex\";s:5:\"\\f86d\";s:7:\"unicode\";s:8:\"&#xf86d;\";}s:15:\"fas fa-id-badge\";a:2:{s:3:\"hex\";s:5:\"\\f2c1\";s:7:\"unicode\";s:8:\"&#xf2c1;\";}s:14:\"fas fa-id-card\";a:2:{s:3:\"hex\";s:5:\"\\f2c2\";s:7:\"unicode\";s:8:\"&#xf2c2;\";}s:18:\"fas fa-id-card-alt\";a:2:{s:3:\"hex\";s:5:\"\\f47f\";s:7:\"unicode\";s:8:\"&#xf47f;\";}s:12:\"fas fa-igloo\";a:2:{s:3:\"hex\";s:5:\"\\f7ae\";s:7:\"unicode\";s:8:\"&#xf7ae;\";}s:12:\"fas fa-image\";a:2:{s:3:\"hex\";s:5:\"\\f03e\";s:7:\"unicode\";s:8:\"&#xf03e;\";}s:13:\"fas fa-images\";a:2:{s:3:\"hex\";s:5:\"\\f302\";s:7:\"unicode\";s:8:\"&#xf302;\";}s:12:\"fas fa-inbox\";a:2:{s:3:\"hex\";s:5:\"\\f01c\";s:7:\"unicode\";s:8:\"&#xf01c;\";}s:13:\"fas fa-indent\";a:2:{s:3:\"hex\";s:5:\"\\f03c\";s:7:\"unicode\";s:8:\"&#xf03c;\";}s:15:\"fas fa-industry\";a:2:{s:3:\"hex\";s:5:\"\\f275\";s:7:\"unicode\";s:8:\"&#xf275;\";}s:15:\"fas fa-infinity\";a:2:{s:3:\"hex\";s:5:\"\\f534\";s:7:\"unicode\";s:8:\"&#xf534;\";}s:11:\"fas fa-info\";a:2:{s:3:\"hex\";s:5:\"\\f129\";s:7:\"unicode\";s:8:\"&#xf129;\";}s:18:\"fas fa-info-circle\";a:2:{s:3:\"hex\";s:5:\"\\f05a\";s:7:\"unicode\";s:8:\"&#xf05a;\";}s:13:\"fas fa-italic\";a:2:{s:3:\"hex\";s:5:\"\\f033\";s:7:\"unicode\";s:8:\"&#xf033;\";}s:11:\"fas fa-jedi\";a:2:{s:3:\"hex\";s:5:\"\\f669\";s:7:\"unicode\";s:8:\"&#xf669;\";}s:12:\"fas fa-joint\";a:2:{s:3:\"hex\";s:5:\"\\f595\";s:7:\"unicode\";s:8:\"&#xf595;\";}s:21:\"fas fa-journal-whills\";a:2:{s:3:\"hex\";s:5:\"\\f66a\";s:7:\"unicode\";s:8:\"&#xf66a;\";}s:12:\"fas fa-kaaba\";a:2:{s:3:\"hex\";s:5:\"\\f66b\";s:7:\"unicode\";s:8:\"&#xf66b;\";}s:10:\"fas fa-key\";a:2:{s:3:\"hex\";s:5:\"\\f084\";s:7:\"unicode\";s:8:\"&#xf084;\";}s:15:\"fas fa-keyboard\";a:2:{s:3:\"hex\";s:5:\"\\f11c\";s:7:\"unicode\";s:8:\"&#xf11c;\";}s:13:\"fas fa-khanda\";a:2:{s:3:\"hex\";s:5:\"\\f66d\";s:7:\"unicode\";s:8:\"&#xf66d;\";}s:11:\"fas fa-kiss\";a:2:{s:3:\"hex\";s:5:\"\\f596\";s:7:\"unicode\";s:8:\"&#xf596;\";}s:16:\"fas fa-kiss-beam\";a:2:{s:3:\"hex\";s:5:\"\\f597\";s:7:\"unicode\";s:8:\"&#xf597;\";}s:22:\"fas fa-kiss-wink-heart\";a:2:{s:3:\"hex\";s:5:\"\\f598\";s:7:\"unicode\";s:8:\"&#xf598;\";}s:16:\"fas fa-kiwi-bird\";a:2:{s:3:\"hex\";s:5:\"\\f535\";s:7:\"unicode\";s:8:\"&#xf535;\";}s:15:\"fas fa-landmark\";a:2:{s:3:\"hex\";s:5:\"\\f66f\";s:7:\"unicode\";s:8:\"&#xf66f;\";}s:15:\"fas fa-language\";a:2:{s:3:\"hex\";s:5:\"\\f1ab\";s:7:\"unicode\";s:8:\"&#xf1ab;\";}s:13:\"fas fa-laptop\";a:2:{s:3:\"hex\";s:5:\"\\f109\";s:7:\"unicode\";s:8:\"&#xf109;\";}s:18:\"fas fa-laptop-code\";a:2:{s:3:\"hex\";s:5:\"\\f5fc\";s:7:\"unicode\";s:8:\"&#xf5fc;\";}s:19:\"fas fa-laptop-house\";a:2:{s:3:\"hex\";s:5:\"\\e066\";s:7:\"unicode\";s:8:\"&#xe066;\";}s:21:\"fas fa-laptop-medical\";a:2:{s:3:\"hex\";s:5:\"\\f812\";s:7:\"unicode\";s:8:\"&#xf812;\";}s:12:\"fas fa-laugh\";a:2:{s:3:\"hex\";s:5:\"\\f599\";s:7:\"unicode\";s:8:\"&#xf599;\";}s:17:\"fas fa-laugh-beam\";a:2:{s:3:\"hex\";s:5:\"\\f59a\";s:7:\"unicode\";s:8:\"&#xf59a;\";}s:19:\"fas fa-laugh-squint\";a:2:{s:3:\"hex\";s:5:\"\\f59b\";s:7:\"unicode\";s:8:\"&#xf59b;\";}s:17:\"fas fa-laugh-wink\";a:2:{s:3:\"hex\";s:5:\"\\f59c\";s:7:\"unicode\";s:8:\"&#xf59c;\";}s:18:\"fas fa-layer-group\";a:2:{s:3:\"hex\";s:5:\"\\f5fd\";s:7:\"unicode\";s:8:\"&#xf5fd;\";}s:11:\"fas fa-leaf\";a:2:{s:3:\"hex\";s:5:\"\\f06c\";s:7:\"unicode\";s:8:\"&#xf06c;\";}s:12:\"fas fa-lemon\";a:2:{s:3:\"hex\";s:5:\"\\f094\";s:7:\"unicode\";s:8:\"&#xf094;\";}s:16:\"fas fa-less-than\";a:2:{s:3:\"hex\";s:5:\"\\f536\";s:7:\"unicode\";s:8:\"&#xf536;\";}s:22:\"fas fa-less-than-equal\";a:2:{s:3:\"hex\";s:5:\"\\f537\";s:7:\"unicode\";s:8:\"&#xf537;\";}s:21:\"fas fa-level-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3be\";s:7:\"unicode\";s:8:\"&#xf3be;\";}s:19:\"fas fa-level-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3bf\";s:7:\"unicode\";s:8:\"&#xf3bf;\";}s:16:\"fas fa-life-ring\";a:2:{s:3:\"hex\";s:5:\"\\f1cd\";s:7:\"unicode\";s:8:\"&#xf1cd;\";}s:16:\"fas fa-lightbulb\";a:2:{s:3:\"hex\";s:5:\"\\f0eb\";s:7:\"unicode\";s:8:\"&#xf0eb;\";}s:11:\"fas fa-link\";a:2:{s:3:\"hex\";s:5:\"\\f0c1\";s:7:\"unicode\";s:8:\"&#xf0c1;\";}s:16:\"fas fa-lira-sign\";a:2:{s:3:\"hex\";s:5:\"\\f195\";s:7:\"unicode\";s:8:\"&#xf195;\";}s:11:\"fas fa-list\";a:2:{s:3:\"hex\";s:5:\"\\f03a\";s:7:\"unicode\";s:8:\"&#xf03a;\";}s:15:\"fas fa-list-alt\";a:2:{s:3:\"hex\";s:5:\"\\f022\";s:7:\"unicode\";s:8:\"&#xf022;\";}s:14:\"fas fa-list-ol\";a:2:{s:3:\"hex\";s:5:\"\\f0cb\";s:7:\"unicode\";s:8:\"&#xf0cb;\";}s:14:\"fas fa-list-ul\";a:2:{s:3:\"hex\";s:5:\"\\f0ca\";s:7:\"unicode\";s:8:\"&#xf0ca;\";}s:21:\"fas fa-location-arrow\";a:2:{s:3:\"hex\";s:5:\"\\f124\";s:7:\"unicode\";s:8:\"&#xf124;\";}s:11:\"fas fa-lock\";a:2:{s:3:\"hex\";s:5:\"\\f023\";s:7:\"unicode\";s:8:\"&#xf023;\";}s:16:\"fas fa-lock-open\";a:2:{s:3:\"hex\";s:5:\"\\f3c1\";s:7:\"unicode\";s:8:\"&#xf3c1;\";}s:26:\"fas fa-long-arrow-alt-down\";a:2:{s:3:\"hex\";s:5:\"\\f309\";s:7:\"unicode\";s:8:\"&#xf309;\";}s:26:\"fas fa-long-arrow-alt-left\";a:2:{s:3:\"hex\";s:5:\"\\f30a\";s:7:\"unicode\";s:8:\"&#xf30a;\";}s:27:\"fas fa-long-arrow-alt-right\";a:2:{s:3:\"hex\";s:5:\"\\f30b\";s:7:\"unicode\";s:8:\"&#xf30b;\";}s:24:\"fas fa-long-arrow-alt-up\";a:2:{s:3:\"hex\";s:5:\"\\f30c\";s:7:\"unicode\";s:8:\"&#xf30c;\";}s:17:\"fas fa-low-vision\";a:2:{s:3:\"hex\";s:5:\"\\f2a8\";s:7:\"unicode\";s:8:\"&#xf2a8;\";}s:19:\"fas fa-luggage-cart\";a:2:{s:3:\"hex\";s:5:\"\\f59d\";s:7:\"unicode\";s:8:\"&#xf59d;\";}s:12:\"fas fa-lungs\";a:2:{s:3:\"hex\";s:5:\"\\f604\";s:7:\"unicode\";s:8:\"&#xf604;\";}s:18:\"fas fa-lungs-virus\";a:2:{s:3:\"hex\";s:5:\"\\e067\";s:7:\"unicode\";s:8:\"&#xe067;\";}s:12:\"fas fa-magic\";a:2:{s:3:\"hex\";s:5:\"\\f0d0\";s:7:\"unicode\";s:8:\"&#xf0d0;\";}s:13:\"fas fa-magnet\";a:2:{s:3:\"hex\";s:5:\"\\f076\";s:7:\"unicode\";s:8:\"&#xf076;\";}s:16:\"fas fa-mail-bulk\";a:2:{s:3:\"hex\";s:5:\"\\f674\";s:7:\"unicode\";s:8:\"&#xf674;\";}s:11:\"fas fa-male\";a:2:{s:3:\"hex\";s:5:\"\\f183\";s:7:\"unicode\";s:8:\"&#xf183;\";}s:10:\"fas fa-map\";a:2:{s:3:\"hex\";s:5:\"\\f279\";s:7:\"unicode\";s:8:\"&#xf279;\";}s:17:\"fas fa-map-marked\";a:2:{s:3:\"hex\";s:5:\"\\f59f\";s:7:\"unicode\";s:8:\"&#xf59f;\";}s:21:\"fas fa-map-marked-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5a0\";s:7:\"unicode\";s:8:\"&#xf5a0;\";}s:17:\"fas fa-map-marker\";a:2:{s:3:\"hex\";s:5:\"\\f041\";s:7:\"unicode\";s:8:\"&#xf041;\";}s:21:\"fas fa-map-marker-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3c5\";s:7:\"unicode\";s:8:\"&#xf3c5;\";}s:14:\"fas fa-map-pin\";a:2:{s:3:\"hex\";s:5:\"\\f276\";s:7:\"unicode\";s:8:\"&#xf276;\";}s:16:\"fas fa-map-signs\";a:2:{s:3:\"hex\";s:5:\"\\f277\";s:7:\"unicode\";s:8:\"&#xf277;\";}s:13:\"fas fa-marker\";a:2:{s:3:\"hex\";s:5:\"\\f5a1\";s:7:\"unicode\";s:8:\"&#xf5a1;\";}s:11:\"fas fa-mars\";a:2:{s:3:\"hex\";s:5:\"\\f222\";s:7:\"unicode\";s:8:\"&#xf222;\";}s:18:\"fas fa-mars-double\";a:2:{s:3:\"hex\";s:5:\"\\f227\";s:7:\"unicode\";s:8:\"&#xf227;\";}s:18:\"fas fa-mars-stroke\";a:2:{s:3:\"hex\";s:5:\"\\f229\";s:7:\"unicode\";s:8:\"&#xf229;\";}s:20:\"fas fa-mars-stroke-h\";a:2:{s:3:\"hex\";s:5:\"\\f22b\";s:7:\"unicode\";s:8:\"&#xf22b;\";}s:20:\"fas fa-mars-stroke-v\";a:2:{s:3:\"hex\";s:5:\"\\f22a\";s:7:\"unicode\";s:8:\"&#xf22a;\";}s:11:\"fas fa-mask\";a:2:{s:3:\"hex\";s:5:\"\\f6fa\";s:7:\"unicode\";s:8:\"&#xf6fa;\";}s:12:\"fas fa-medal\";a:2:{s:3:\"hex\";s:5:\"\\f5a2\";s:7:\"unicode\";s:8:\"&#xf5a2;\";}s:13:\"fas fa-medkit\";a:2:{s:3:\"hex\";s:5:\"\\f0fa\";s:7:\"unicode\";s:8:\"&#xf0fa;\";}s:10:\"fas fa-meh\";a:2:{s:3:\"hex\";s:5:\"\\f11a\";s:7:\"unicode\";s:8:\"&#xf11a;\";}s:16:\"fas fa-meh-blank\";a:2:{s:3:\"hex\";s:5:\"\\f5a4\";s:7:\"unicode\";s:8:\"&#xf5a4;\";}s:23:\"fas fa-meh-rolling-eyes\";a:2:{s:3:\"hex\";s:5:\"\\f5a5\";s:7:\"unicode\";s:8:\"&#xf5a5;\";}s:13:\"fas fa-memory\";a:2:{s:3:\"hex\";s:5:\"\\f538\";s:7:\"unicode\";s:8:\"&#xf538;\";}s:14:\"fas fa-menorah\";a:2:{s:3:\"hex\";s:5:\"\\f676\";s:7:\"unicode\";s:8:\"&#xf676;\";}s:14:\"fas fa-mercury\";a:2:{s:3:\"hex\";s:5:\"\\f223\";s:7:\"unicode\";s:8:\"&#xf223;\";}s:13:\"fas fa-meteor\";a:2:{s:3:\"hex\";s:5:\"\\f753\";s:7:\"unicode\";s:8:\"&#xf753;\";}s:16:\"fas fa-microchip\";a:2:{s:3:\"hex\";s:5:\"\\f2db\";s:7:\"unicode\";s:8:\"&#xf2db;\";}s:17:\"fas fa-microphone\";a:2:{s:3:\"hex\";s:5:\"\\f130\";s:7:\"unicode\";s:8:\"&#xf130;\";}s:21:\"fas fa-microphone-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3c9\";s:7:\"unicode\";s:8:\"&#xf3c9;\";}s:27:\"fas fa-microphone-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\f539\";s:7:\"unicode\";s:8:\"&#xf539;\";}s:23:\"fas fa-microphone-slash\";a:2:{s:3:\"hex\";s:5:\"\\f131\";s:7:\"unicode\";s:8:\"&#xf131;\";}s:17:\"fas fa-microscope\";a:2:{s:3:\"hex\";s:5:\"\\f610\";s:7:\"unicode\";s:8:\"&#xf610;\";}s:12:\"fas fa-minus\";a:2:{s:3:\"hex\";s:5:\"\\f068\";s:7:\"unicode\";s:8:\"&#xf068;\";}s:19:\"fas fa-minus-circle\";a:2:{s:3:\"hex\";s:5:\"\\f056\";s:7:\"unicode\";s:8:\"&#xf056;\";}s:19:\"fas fa-minus-square\";a:2:{s:3:\"hex\";s:5:\"\\f146\";s:7:\"unicode\";s:8:\"&#xf146;\";}s:13:\"fas fa-mitten\";a:2:{s:3:\"hex\";s:5:\"\\f7b5\";s:7:\"unicode\";s:8:\"&#xf7b5;\";}s:13:\"fas fa-mobile\";a:2:{s:3:\"hex\";s:5:\"\\f10b\";s:7:\"unicode\";s:8:\"&#xf10b;\";}s:17:\"fas fa-mobile-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3cd\";s:7:\"unicode\";s:8:\"&#xf3cd;\";}s:17:\"fas fa-money-bill\";a:2:{s:3:\"hex\";s:5:\"\\f0d6\";s:7:\"unicode\";s:8:\"&#xf0d6;\";}s:21:\"fas fa-money-bill-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3d1\";s:7:\"unicode\";s:8:\"&#xf3d1;\";}s:22:\"fas fa-money-bill-wave\";a:2:{s:3:\"hex\";s:5:\"\\f53a\";s:7:\"unicode\";s:8:\"&#xf53a;\";}s:26:\"fas fa-money-bill-wave-alt\";a:2:{s:3:\"hex\";s:5:\"\\f53b\";s:7:\"unicode\";s:8:\"&#xf53b;\";}s:18:\"fas fa-money-check\";a:2:{s:3:\"hex\";s:5:\"\\f53c\";s:7:\"unicode\";s:8:\"&#xf53c;\";}s:22:\"fas fa-money-check-alt\";a:2:{s:3:\"hex\";s:5:\"\\f53d\";s:7:\"unicode\";s:8:\"&#xf53d;\";}s:15:\"fas fa-monument\";a:2:{s:3:\"hex\";s:5:\"\\f5a6\";s:7:\"unicode\";s:8:\"&#xf5a6;\";}s:11:\"fas fa-moon\";a:2:{s:3:\"hex\";s:5:\"\\f186\";s:7:\"unicode\";s:8:\"&#xf186;\";}s:20:\"fas fa-mortar-pestle\";a:2:{s:3:\"hex\";s:5:\"\\f5a7\";s:7:\"unicode\";s:8:\"&#xf5a7;\";}s:13:\"fas fa-mosque\";a:2:{s:3:\"hex\";s:5:\"\\f678\";s:7:\"unicode\";s:8:\"&#xf678;\";}s:17:\"fas fa-motorcycle\";a:2:{s:3:\"hex\";s:5:\"\\f21c\";s:7:\"unicode\";s:8:\"&#xf21c;\";}s:15:\"fas fa-mountain\";a:2:{s:3:\"hex\";s:5:\"\\f6fc\";s:7:\"unicode\";s:8:\"&#xf6fc;\";}s:12:\"fas fa-mouse\";a:2:{s:3:\"hex\";s:5:\"\\f8cc\";s:7:\"unicode\";s:8:\"&#xf8cc;\";}s:20:\"fas fa-mouse-pointer\";a:2:{s:3:\"hex\";s:5:\"\\f245\";s:7:\"unicode\";s:8:\"&#xf245;\";}s:14:\"fas fa-mug-hot\";a:2:{s:3:\"hex\";s:5:\"\\f7b6\";s:7:\"unicode\";s:8:\"&#xf7b6;\";}s:12:\"fas fa-music\";a:2:{s:3:\"hex\";s:5:\"\\f001\";s:7:\"unicode\";s:8:\"&#xf001;\";}s:20:\"fas fa-network-wired\";a:2:{s:3:\"hex\";s:5:\"\\f6ff\";s:7:\"unicode\";s:8:\"&#xf6ff;\";}s:13:\"fas fa-neuter\";a:2:{s:3:\"hex\";s:5:\"\\f22c\";s:7:\"unicode\";s:8:\"&#xf22c;\";}s:16:\"fas fa-newspaper\";a:2:{s:3:\"hex\";s:5:\"\\f1ea\";s:7:\"unicode\";s:8:\"&#xf1ea;\";}s:16:\"fas fa-not-equal\";a:2:{s:3:\"hex\";s:5:\"\\f53e\";s:7:\"unicode\";s:8:\"&#xf53e;\";}s:20:\"fas fa-notes-medical\";a:2:{s:3:\"hex\";s:5:\"\\f481\";s:7:\"unicode\";s:8:\"&#xf481;\";}s:19:\"fas fa-object-group\";a:2:{s:3:\"hex\";s:5:\"\\f247\";s:7:\"unicode\";s:8:\"&#xf247;\";}s:21:\"fas fa-object-ungroup\";a:2:{s:3:\"hex\";s:5:\"\\f248\";s:7:\"unicode\";s:8:\"&#xf248;\";}s:14:\"fas fa-oil-can\";a:2:{s:3:\"hex\";s:5:\"\\f613\";s:7:\"unicode\";s:8:\"&#xf613;\";}s:9:\"fas fa-om\";a:2:{s:3:\"hex\";s:5:\"\\f679\";s:7:\"unicode\";s:8:\"&#xf679;\";}s:12:\"fas fa-otter\";a:2:{s:3:\"hex\";s:5:\"\\f700\";s:7:\"unicode\";s:8:\"&#xf700;\";}s:14:\"fas fa-outdent\";a:2:{s:3:\"hex\";s:5:\"\\f03b\";s:7:\"unicode\";s:8:\"&#xf03b;\";}s:12:\"fas fa-pager\";a:2:{s:3:\"hex\";s:5:\"\\f815\";s:7:\"unicode\";s:8:\"&#xf815;\";}s:18:\"fas fa-paint-brush\";a:2:{s:3:\"hex\";s:5:\"\\f1fc\";s:7:\"unicode\";s:8:\"&#xf1fc;\";}s:19:\"fas fa-paint-roller\";a:2:{s:3:\"hex\";s:5:\"\\f5aa\";s:7:\"unicode\";s:8:\"&#xf5aa;\";}s:14:\"fas fa-palette\";a:2:{s:3:\"hex\";s:5:\"\\f53f\";s:7:\"unicode\";s:8:\"&#xf53f;\";}s:13:\"fas fa-pallet\";a:2:{s:3:\"hex\";s:5:\"\\f482\";s:7:\"unicode\";s:8:\"&#xf482;\";}s:18:\"fas fa-paper-plane\";a:2:{s:3:\"hex\";s:5:\"\\f1d8\";s:7:\"unicode\";s:8:\"&#xf1d8;\";}s:16:\"fas fa-paperclip\";a:2:{s:3:\"hex\";s:5:\"\\f0c6\";s:7:\"unicode\";s:8:\"&#xf0c6;\";}s:20:\"fas fa-parachute-box\";a:2:{s:3:\"hex\";s:5:\"\\f4cd\";s:7:\"unicode\";s:8:\"&#xf4cd;\";}s:16:\"fas fa-paragraph\";a:2:{s:3:\"hex\";s:5:\"\\f1dd\";s:7:\"unicode\";s:8:\"&#xf1dd;\";}s:14:\"fas fa-parking\";a:2:{s:3:\"hex\";s:5:\"\\f540\";s:7:\"unicode\";s:8:\"&#xf540;\";}s:15:\"fas fa-passport\";a:2:{s:3:\"hex\";s:5:\"\\f5ab\";s:7:\"unicode\";s:8:\"&#xf5ab;\";}s:21:\"fas fa-pastafarianism\";a:2:{s:3:\"hex\";s:5:\"\\f67b\";s:7:\"unicode\";s:8:\"&#xf67b;\";}s:12:\"fas fa-paste\";a:2:{s:3:\"hex\";s:5:\"\\f0ea\";s:7:\"unicode\";s:8:\"&#xf0ea;\";}s:12:\"fas fa-pause\";a:2:{s:3:\"hex\";s:5:\"\\f04c\";s:7:\"unicode\";s:8:\"&#xf04c;\";}s:19:\"fas fa-pause-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28b\";s:7:\"unicode\";s:8:\"&#xf28b;\";}s:10:\"fas fa-paw\";a:2:{s:3:\"hex\";s:5:\"\\f1b0\";s:7:\"unicode\";s:8:\"&#xf1b0;\";}s:12:\"fas fa-peace\";a:2:{s:3:\"hex\";s:5:\"\\f67c\";s:7:\"unicode\";s:8:\"&#xf67c;\";}s:10:\"fas fa-pen\";a:2:{s:3:\"hex\";s:5:\"\\f304\";s:7:\"unicode\";s:8:\"&#xf304;\";}s:14:\"fas fa-pen-alt\";a:2:{s:3:\"hex\";s:5:\"\\f305\";s:7:\"unicode\";s:8:\"&#xf305;\";}s:16:\"fas fa-pen-fancy\";a:2:{s:3:\"hex\";s:5:\"\\f5ac\";s:7:\"unicode\";s:8:\"&#xf5ac;\";}s:14:\"fas fa-pen-nib\";a:2:{s:3:\"hex\";s:5:\"\\f5ad\";s:7:\"unicode\";s:8:\"&#xf5ad;\";}s:17:\"fas fa-pen-square\";a:2:{s:3:\"hex\";s:5:\"\\f14b\";s:7:\"unicode\";s:8:\"&#xf14b;\";}s:17:\"fas fa-pencil-alt\";a:2:{s:3:\"hex\";s:5:\"\\f303\";s:7:\"unicode\";s:8:\"&#xf303;\";}s:19:\"fas fa-pencil-ruler\";a:2:{s:3:\"hex\";s:5:\"\\f5ae\";s:7:\"unicode\";s:8:\"&#xf5ae;\";}s:20:\"fas fa-people-arrows\";a:2:{s:3:\"hex\";s:5:\"\\e068\";s:7:\"unicode\";s:8:\"&#xe068;\";}s:19:\"fas fa-people-carry\";a:2:{s:3:\"hex\";s:5:\"\\f4ce\";s:7:\"unicode\";s:8:\"&#xf4ce;\";}s:17:\"fas fa-pepper-hot\";a:2:{s:3:\"hex\";s:5:\"\\f816\";s:7:\"unicode\";s:8:\"&#xf816;\";}s:14:\"fas fa-percent\";a:2:{s:3:\"hex\";s:5:\"\\f295\";s:7:\"unicode\";s:8:\"&#xf295;\";}s:17:\"fas fa-percentage\";a:2:{s:3:\"hex\";s:5:\"\\f541\";s:7:\"unicode\";s:8:\"&#xf541;\";}s:19:\"fas fa-person-booth\";a:2:{s:3:\"hex\";s:5:\"\\f756\";s:7:\"unicode\";s:8:\"&#xf756;\";}s:12:\"fas fa-phone\";a:2:{s:3:\"hex\";s:5:\"\\f095\";s:7:\"unicode\";s:8:\"&#xf095;\";}s:16:\"fas fa-phone-alt\";a:2:{s:3:\"hex\";s:5:\"\\f879\";s:7:\"unicode\";s:8:\"&#xf879;\";}s:18:\"fas fa-phone-slash\";a:2:{s:3:\"hex\";s:5:\"\\f3dd\";s:7:\"unicode\";s:8:\"&#xf3dd;\";}s:19:\"fas fa-phone-square\";a:2:{s:3:\"hex\";s:5:\"\\f098\";s:7:\"unicode\";s:8:\"&#xf098;\";}s:23:\"fas fa-phone-square-alt\";a:2:{s:3:\"hex\";s:5:\"\\f87b\";s:7:\"unicode\";s:8:\"&#xf87b;\";}s:19:\"fas fa-phone-volume\";a:2:{s:3:\"hex\";s:5:\"\\f2a0\";s:7:\"unicode\";s:8:\"&#xf2a0;\";}s:18:\"fas fa-photo-video\";a:2:{s:3:\"hex\";s:5:\"\\f87c\";s:7:\"unicode\";s:8:\"&#xf87c;\";}s:17:\"fas fa-piggy-bank\";a:2:{s:3:\"hex\";s:5:\"\\f4d3\";s:7:\"unicode\";s:8:\"&#xf4d3;\";}s:12:\"fas fa-pills\";a:2:{s:3:\"hex\";s:5:\"\\f484\";s:7:\"unicode\";s:8:\"&#xf484;\";}s:18:\"fas fa-pizza-slice\";a:2:{s:3:\"hex\";s:5:\"\\f818\";s:7:\"unicode\";s:8:\"&#xf818;\";}s:23:\"fas fa-place-of-worship\";a:2:{s:3:\"hex\";s:5:\"\\f67f\";s:7:\"unicode\";s:8:\"&#xf67f;\";}s:12:\"fas fa-plane\";a:2:{s:3:\"hex\";s:5:\"\\f072\";s:7:\"unicode\";s:8:\"&#xf072;\";}s:20:\"fas fa-plane-arrival\";a:2:{s:3:\"hex\";s:5:\"\\f5af\";s:7:\"unicode\";s:8:\"&#xf5af;\";}s:22:\"fas fa-plane-departure\";a:2:{s:3:\"hex\";s:5:\"\\f5b0\";s:7:\"unicode\";s:8:\"&#xf5b0;\";}s:18:\"fas fa-plane-slash\";a:2:{s:3:\"hex\";s:5:\"\\e069\";s:7:\"unicode\";s:8:\"&#xe069;\";}s:11:\"fas fa-play\";a:2:{s:3:\"hex\";s:5:\"\\f04b\";s:7:\"unicode\";s:8:\"&#xf04b;\";}s:18:\"fas fa-play-circle\";a:2:{s:3:\"hex\";s:5:\"\\f144\";s:7:\"unicode\";s:8:\"&#xf144;\";}s:11:\"fas fa-plug\";a:2:{s:3:\"hex\";s:5:\"\\f1e6\";s:7:\"unicode\";s:8:\"&#xf1e6;\";}s:11:\"fas fa-plus\";a:2:{s:3:\"hex\";s:5:\"\\f067\";s:7:\"unicode\";s:8:\"&#xf067;\";}s:18:\"fas fa-plus-circle\";a:2:{s:3:\"hex\";s:5:\"\\f055\";s:7:\"unicode\";s:8:\"&#xf055;\";}s:18:\"fas fa-plus-square\";a:2:{s:3:\"hex\";s:5:\"\\f0fe\";s:7:\"unicode\";s:8:\"&#xf0fe;\";}s:14:\"fas fa-podcast\";a:2:{s:3:\"hex\";s:5:\"\\f2ce\";s:7:\"unicode\";s:8:\"&#xf2ce;\";}s:11:\"fas fa-poll\";a:2:{s:3:\"hex\";s:5:\"\\f681\";s:7:\"unicode\";s:8:\"&#xf681;\";}s:13:\"fas fa-poll-h\";a:2:{s:3:\"hex\";s:5:\"\\f682\";s:7:\"unicode\";s:8:\"&#xf682;\";}s:10:\"fas fa-poo\";a:2:{s:3:\"hex\";s:5:\"\\f2fe\";s:7:\"unicode\";s:8:\"&#xf2fe;\";}s:16:\"fas fa-poo-storm\";a:2:{s:3:\"hex\";s:5:\"\\f75a\";s:7:\"unicode\";s:8:\"&#xf75a;\";}s:11:\"fas fa-poop\";a:2:{s:3:\"hex\";s:5:\"\\f619\";s:7:\"unicode\";s:8:\"&#xf619;\";}s:15:\"fas fa-portrait\";a:2:{s:3:\"hex\";s:5:\"\\f3e0\";s:7:\"unicode\";s:8:\"&#xf3e0;\";}s:17:\"fas fa-pound-sign\";a:2:{s:3:\"hex\";s:5:\"\\f154\";s:7:\"unicode\";s:8:\"&#xf154;\";}s:16:\"fas fa-power-off\";a:2:{s:3:\"hex\";s:5:\"\\f011\";s:7:\"unicode\";s:8:\"&#xf011;\";}s:11:\"fas fa-pray\";a:2:{s:3:\"hex\";s:5:\"\\f683\";s:7:\"unicode\";s:8:\"&#xf683;\";}s:20:\"fas fa-praying-hands\";a:2:{s:3:\"hex\";s:5:\"\\f684\";s:7:\"unicode\";s:8:\"&#xf684;\";}s:19:\"fas fa-prescription\";a:2:{s:3:\"hex\";s:5:\"\\f5b1\";s:7:\"unicode\";s:8:\"&#xf5b1;\";}s:26:\"fas fa-prescription-bottle\";a:2:{s:3:\"hex\";s:5:\"\\f485\";s:7:\"unicode\";s:8:\"&#xf485;\";}s:30:\"fas fa-prescription-bottle-alt\";a:2:{s:3:\"hex\";s:5:\"\\f486\";s:7:\"unicode\";s:8:\"&#xf486;\";}s:12:\"fas fa-print\";a:2:{s:3:\"hex\";s:5:\"\\f02f\";s:7:\"unicode\";s:8:\"&#xf02f;\";}s:17:\"fas fa-procedures\";a:2:{s:3:\"hex\";s:5:\"\\f487\";s:7:\"unicode\";s:8:\"&#xf487;\";}s:22:\"fas fa-project-diagram\";a:2:{s:3:\"hex\";s:5:\"\\f542\";s:7:\"unicode\";s:8:\"&#xf542;\";}s:19:\"fas fa-pump-medical\";a:2:{s:3:\"hex\";s:5:\"\\e06a\";s:7:\"unicode\";s:8:\"&#xe06a;\";}s:16:\"fas fa-pump-soap\";a:2:{s:3:\"hex\";s:5:\"\\e06b\";s:7:\"unicode\";s:8:\"&#xe06b;\";}s:19:\"fas fa-puzzle-piece\";a:2:{s:3:\"hex\";s:5:\"\\f12e\";s:7:\"unicode\";s:8:\"&#xf12e;\";}s:13:\"fas fa-qrcode\";a:2:{s:3:\"hex\";s:5:\"\\f029\";s:7:\"unicode\";s:8:\"&#xf029;\";}s:15:\"fas fa-question\";a:2:{s:3:\"hex\";s:5:\"\\f128\";s:7:\"unicode\";s:8:\"&#xf128;\";}s:22:\"fas fa-question-circle\";a:2:{s:3:\"hex\";s:5:\"\\f059\";s:7:\"unicode\";s:8:\"&#xf059;\";}s:16:\"fas fa-quidditch\";a:2:{s:3:\"hex\";s:5:\"\\f458\";s:7:\"unicode\";s:8:\"&#xf458;\";}s:17:\"fas fa-quote-left\";a:2:{s:3:\"hex\";s:5:\"\\f10d\";s:7:\"unicode\";s:8:\"&#xf10d;\";}s:18:\"fas fa-quote-right\";a:2:{s:3:\"hex\";s:5:\"\\f10e\";s:7:\"unicode\";s:8:\"&#xf10e;\";}s:12:\"fas fa-quran\";a:2:{s:3:\"hex\";s:5:\"\\f687\";s:7:\"unicode\";s:8:\"&#xf687;\";}s:16:\"fas fa-radiation\";a:2:{s:3:\"hex\";s:5:\"\\f7b9\";s:7:\"unicode\";s:8:\"&#xf7b9;\";}s:20:\"fas fa-radiation-alt\";a:2:{s:3:\"hex\";s:5:\"\\f7ba\";s:7:\"unicode\";s:8:\"&#xf7ba;\";}s:14:\"fas fa-rainbow\";a:2:{s:3:\"hex\";s:5:\"\\f75b\";s:7:\"unicode\";s:8:\"&#xf75b;\";}s:13:\"fas fa-random\";a:2:{s:3:\"hex\";s:5:\"\\f074\";s:7:\"unicode\";s:8:\"&#xf074;\";}s:14:\"fas fa-receipt\";a:2:{s:3:\"hex\";s:5:\"\\f543\";s:7:\"unicode\";s:8:\"&#xf543;\";}s:19:\"fas fa-record-vinyl\";a:2:{s:3:\"hex\";s:5:\"\\f8d9\";s:7:\"unicode\";s:8:\"&#xf8d9;\";}s:14:\"fas fa-recycle\";a:2:{s:3:\"hex\";s:5:\"\\f1b8\";s:7:\"unicode\";s:8:\"&#xf1b8;\";}s:11:\"fas fa-redo\";a:2:{s:3:\"hex\";s:5:\"\\f01e\";s:7:\"unicode\";s:8:\"&#xf01e;\";}s:15:\"fas fa-redo-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f9\";s:7:\"unicode\";s:8:\"&#xf2f9;\";}s:17:\"fas fa-registered\";a:2:{s:3:\"hex\";s:5:\"\\f25d\";s:7:\"unicode\";s:8:\"&#xf25d;\";}s:20:\"fas fa-remove-format\";a:2:{s:3:\"hex\";s:5:\"\\f87d\";s:7:\"unicode\";s:8:\"&#xf87d;\";}s:12:\"fas fa-reply\";a:2:{s:3:\"hex\";s:5:\"\\f3e5\";s:7:\"unicode\";s:8:\"&#xf3e5;\";}s:16:\"fas fa-reply-all\";a:2:{s:3:\"hex\";s:5:\"\\f122\";s:7:\"unicode\";s:8:\"&#xf122;\";}s:17:\"fas fa-republican\";a:2:{s:3:\"hex\";s:5:\"\\f75e\";s:7:\"unicode\";s:8:\"&#xf75e;\";}s:15:\"fas fa-restroom\";a:2:{s:3:\"hex\";s:5:\"\\f7bd\";s:7:\"unicode\";s:8:\"&#xf7bd;\";}s:14:\"fas fa-retweet\";a:2:{s:3:\"hex\";s:5:\"\\f079\";s:7:\"unicode\";s:8:\"&#xf079;\";}s:13:\"fas fa-ribbon\";a:2:{s:3:\"hex\";s:5:\"\\f4d6\";s:7:\"unicode\";s:8:\"&#xf4d6;\";}s:11:\"fas fa-ring\";a:2:{s:3:\"hex\";s:5:\"\\f70b\";s:7:\"unicode\";s:8:\"&#xf70b;\";}s:11:\"fas fa-road\";a:2:{s:3:\"hex\";s:5:\"\\f018\";s:7:\"unicode\";s:8:\"&#xf018;\";}s:12:\"fas fa-robot\";a:2:{s:3:\"hex\";s:5:\"\\f544\";s:7:\"unicode\";s:8:\"&#xf544;\";}s:13:\"fas fa-rocket\";a:2:{s:3:\"hex\";s:5:\"\\f135\";s:7:\"unicode\";s:8:\"&#xf135;\";}s:12:\"fas fa-route\";a:2:{s:3:\"hex\";s:5:\"\\f4d7\";s:7:\"unicode\";s:8:\"&#xf4d7;\";}s:10:\"fas fa-rss\";a:2:{s:3:\"hex\";s:5:\"\\f09e\";s:7:\"unicode\";s:8:\"&#xf09e;\";}s:17:\"fas fa-rss-square\";a:2:{s:3:\"hex\";s:5:\"\\f143\";s:7:\"unicode\";s:8:\"&#xf143;\";}s:17:\"fas fa-ruble-sign\";a:2:{s:3:\"hex\";s:5:\"\\f158\";s:7:\"unicode\";s:8:\"&#xf158;\";}s:12:\"fas fa-ruler\";a:2:{s:3:\"hex\";s:5:\"\\f545\";s:7:\"unicode\";s:8:\"&#xf545;\";}s:21:\"fas fa-ruler-combined\";a:2:{s:3:\"hex\";s:5:\"\\f546\";s:7:\"unicode\";s:8:\"&#xf546;\";}s:23:\"fas fa-ruler-horizontal\";a:2:{s:3:\"hex\";s:5:\"\\f547\";s:7:\"unicode\";s:8:\"&#xf547;\";}s:21:\"fas fa-ruler-vertical\";a:2:{s:3:\"hex\";s:5:\"\\f548\";s:7:\"unicode\";s:8:\"&#xf548;\";}s:14:\"fas fa-running\";a:2:{s:3:\"hex\";s:5:\"\\f70c\";s:7:\"unicode\";s:8:\"&#xf70c;\";}s:17:\"fas fa-rupee-sign\";a:2:{s:3:\"hex\";s:5:\"\\f156\";s:7:\"unicode\";s:8:\"&#xf156;\";}s:14:\"fas fa-sad-cry\";a:2:{s:3:\"hex\";s:5:\"\\f5b3\";s:7:\"unicode\";s:8:\"&#xf5b3;\";}s:15:\"fas fa-sad-tear\";a:2:{s:3:\"hex\";s:5:\"\\f5b4\";s:7:\"unicode\";s:8:\"&#xf5b4;\";}s:16:\"fas fa-satellite\";a:2:{s:3:\"hex\";s:5:\"\\f7bf\";s:7:\"unicode\";s:8:\"&#xf7bf;\";}s:21:\"fas fa-satellite-dish\";a:2:{s:3:\"hex\";s:5:\"\\f7c0\";s:7:\"unicode\";s:8:\"&#xf7c0;\";}s:11:\"fas fa-save\";a:2:{s:3:\"hex\";s:5:\"\\f0c7\";s:7:\"unicode\";s:8:\"&#xf0c7;\";}s:13:\"fas fa-school\";a:2:{s:3:\"hex\";s:5:\"\\f549\";s:7:\"unicode\";s:8:\"&#xf549;\";}s:18:\"fas fa-screwdriver\";a:2:{s:3:\"hex\";s:5:\"\\f54a\";s:7:\"unicode\";s:8:\"&#xf54a;\";}s:13:\"fas fa-scroll\";a:2:{s:3:\"hex\";s:5:\"\\f70e\";s:7:\"unicode\";s:8:\"&#xf70e;\";}s:14:\"fas fa-sd-card\";a:2:{s:3:\"hex\";s:5:\"\\f7c2\";s:7:\"unicode\";s:8:\"&#xf7c2;\";}s:13:\"fas fa-search\";a:2:{s:3:\"hex\";s:5:\"\\f002\";s:7:\"unicode\";s:8:\"&#xf002;\";}s:20:\"fas fa-search-dollar\";a:2:{s:3:\"hex\";s:5:\"\\f688\";s:7:\"unicode\";s:8:\"&#xf688;\";}s:22:\"fas fa-search-location\";a:2:{s:3:\"hex\";s:5:\"\\f689\";s:7:\"unicode\";s:8:\"&#xf689;\";}s:19:\"fas fa-search-minus\";a:2:{s:3:\"hex\";s:5:\"\\f010\";s:7:\"unicode\";s:8:\"&#xf010;\";}s:18:\"fas fa-search-plus\";a:2:{s:3:\"hex\";s:5:\"\\f00e\";s:7:\"unicode\";s:8:\"&#xf00e;\";}s:15:\"fas fa-seedling\";a:2:{s:3:\"hex\";s:5:\"\\f4d8\";s:7:\"unicode\";s:8:\"&#xf4d8;\";}s:13:\"fas fa-server\";a:2:{s:3:\"hex\";s:5:\"\\f233\";s:7:\"unicode\";s:8:\"&#xf233;\";}s:13:\"fas fa-shapes\";a:2:{s:3:\"hex\";s:5:\"\\f61f\";s:7:\"unicode\";s:8:\"&#xf61f;\";}s:12:\"fas fa-share\";a:2:{s:3:\"hex\";s:5:\"\\f064\";s:7:\"unicode\";s:8:\"&#xf064;\";}s:16:\"fas fa-share-alt\";a:2:{s:3:\"hex\";s:5:\"\\f1e0\";s:7:\"unicode\";s:8:\"&#xf1e0;\";}s:23:\"fas fa-share-alt-square\";a:2:{s:3:\"hex\";s:5:\"\\f1e1\";s:7:\"unicode\";s:8:\"&#xf1e1;\";}s:19:\"fas fa-share-square\";a:2:{s:3:\"hex\";s:5:\"\\f14d\";s:7:\"unicode\";s:8:\"&#xf14d;\";}s:18:\"fas fa-shekel-sign\";a:2:{s:3:\"hex\";s:5:\"\\f20b\";s:7:\"unicode\";s:8:\"&#xf20b;\";}s:17:\"fas fa-shield-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3ed\";s:7:\"unicode\";s:8:\"&#xf3ed;\";}s:19:\"fas fa-shield-virus\";a:2:{s:3:\"hex\";s:5:\"\\e06c\";s:7:\"unicode\";s:8:\"&#xe06c;\";}s:11:\"fas fa-ship\";a:2:{s:3:\"hex\";s:5:\"\\f21a\";s:7:\"unicode\";s:8:\"&#xf21a;\";}s:20:\"fas fa-shipping-fast\";a:2:{s:3:\"hex\";s:5:\"\\f48b\";s:7:\"unicode\";s:8:\"&#xf48b;\";}s:18:\"fas fa-shoe-prints\";a:2:{s:3:\"hex\";s:5:\"\\f54b\";s:7:\"unicode\";s:8:\"&#xf54b;\";}s:19:\"fas fa-shopping-bag\";a:2:{s:3:\"hex\";s:5:\"\\f290\";s:7:\"unicode\";s:8:\"&#xf290;\";}s:22:\"fas fa-shopping-basket\";a:2:{s:3:\"hex\";s:5:\"\\f291\";s:7:\"unicode\";s:8:\"&#xf291;\";}s:20:\"fas fa-shopping-cart\";a:2:{s:3:\"hex\";s:5:\"\\f07a\";s:7:\"unicode\";s:8:\"&#xf07a;\";}s:13:\"fas fa-shower\";a:2:{s:3:\"hex\";s:5:\"\\f2cc\";s:7:\"unicode\";s:8:\"&#xf2cc;\";}s:18:\"fas fa-shuttle-van\";a:2:{s:3:\"hex\";s:5:\"\\f5b6\";s:7:\"unicode\";s:8:\"&#xf5b6;\";}s:11:\"fas fa-sign\";a:2:{s:3:\"hex\";s:5:\"\\f4d9\";s:7:\"unicode\";s:8:\"&#xf4d9;\";}s:18:\"fas fa-sign-in-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f6\";s:7:\"unicode\";s:8:\"&#xf2f6;\";}s:20:\"fas fa-sign-language\";a:2:{s:3:\"hex\";s:5:\"\\f2a7\";s:7:\"unicode\";s:8:\"&#xf2a7;\";}s:19:\"fas fa-sign-out-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f5\";s:7:\"unicode\";s:8:\"&#xf2f5;\";}s:13:\"fas fa-signal\";a:2:{s:3:\"hex\";s:5:\"\\f012\";s:7:\"unicode\";s:8:\"&#xf012;\";}s:16:\"fas fa-signature\";a:2:{s:3:\"hex\";s:5:\"\\f5b7\";s:7:\"unicode\";s:8:\"&#xf5b7;\";}s:15:\"fas fa-sim-card\";a:2:{s:3:\"hex\";s:5:\"\\f7c4\";s:7:\"unicode\";s:8:\"&#xf7c4;\";}s:11:\"fas fa-sink\";a:2:{s:3:\"hex\";s:5:\"\\e06d\";s:7:\"unicode\";s:8:\"&#xe06d;\";}s:14:\"fas fa-sitemap\";a:2:{s:3:\"hex\";s:5:\"\\f0e8\";s:7:\"unicode\";s:8:\"&#xf0e8;\";}s:14:\"fas fa-skating\";a:2:{s:3:\"hex\";s:5:\"\\f7c5\";s:7:\"unicode\";s:8:\"&#xf7c5;\";}s:13:\"fas fa-skiing\";a:2:{s:3:\"hex\";s:5:\"\\f7c9\";s:7:\"unicode\";s:8:\"&#xf7c9;\";}s:20:\"fas fa-skiing-nordic\";a:2:{s:3:\"hex\";s:5:\"\\f7ca\";s:7:\"unicode\";s:8:\"&#xf7ca;\";}s:12:\"fas fa-skull\";a:2:{s:3:\"hex\";s:5:\"\\f54c\";s:7:\"unicode\";s:8:\"&#xf54c;\";}s:23:\"fas fa-skull-crossbones\";a:2:{s:3:\"hex\";s:5:\"\\f714\";s:7:\"unicode\";s:8:\"&#xf714;\";}s:12:\"fas fa-slash\";a:2:{s:3:\"hex\";s:5:\"\\f715\";s:7:\"unicode\";s:8:\"&#xf715;\";}s:13:\"fas fa-sleigh\";a:2:{s:3:\"hex\";s:5:\"\\f7cc\";s:7:\"unicode\";s:8:\"&#xf7cc;\";}s:16:\"fas fa-sliders-h\";a:2:{s:3:\"hex\";s:5:\"\\f1de\";s:7:\"unicode\";s:8:\"&#xf1de;\";}s:12:\"fas fa-smile\";a:2:{s:3:\"hex\";s:5:\"\\f118\";s:7:\"unicode\";s:8:\"&#xf118;\";}s:17:\"fas fa-smile-beam\";a:2:{s:3:\"hex\";s:5:\"\\f5b8\";s:7:\"unicode\";s:8:\"&#xf5b8;\";}s:17:\"fas fa-smile-wink\";a:2:{s:3:\"hex\";s:5:\"\\f4da\";s:7:\"unicode\";s:8:\"&#xf4da;\";}s:11:\"fas fa-smog\";a:2:{s:3:\"hex\";s:5:\"\\f75f\";s:7:\"unicode\";s:8:\"&#xf75f;\";}s:14:\"fas fa-smoking\";a:2:{s:3:\"hex\";s:5:\"\\f48d\";s:7:\"unicode\";s:8:\"&#xf48d;\";}s:18:\"fas fa-smoking-ban\";a:2:{s:3:\"hex\";s:5:\"\\f54d\";s:7:\"unicode\";s:8:\"&#xf54d;\";}s:10:\"fas fa-sms\";a:2:{s:3:\"hex\";s:5:\"\\f7cd\";s:7:\"unicode\";s:8:\"&#xf7cd;\";}s:19:\"fas fa-snowboarding\";a:2:{s:3:\"hex\";s:5:\"\\f7ce\";s:7:\"unicode\";s:8:\"&#xf7ce;\";}s:16:\"fas fa-snowflake\";a:2:{s:3:\"hex\";s:5:\"\\f2dc\";s:7:\"unicode\";s:8:\"&#xf2dc;\";}s:14:\"fas fa-snowman\";a:2:{s:3:\"hex\";s:5:\"\\f7d0\";s:7:\"unicode\";s:8:\"&#xf7d0;\";}s:15:\"fas fa-snowplow\";a:2:{s:3:\"hex\";s:5:\"\\f7d2\";s:7:\"unicode\";s:8:\"&#xf7d2;\";}s:11:\"fas fa-soap\";a:2:{s:3:\"hex\";s:5:\"\\e06e\";s:7:\"unicode\";s:8:\"&#xe06e;\";}s:12:\"fas fa-socks\";a:2:{s:3:\"hex\";s:5:\"\\f696\";s:7:\"unicode\";s:8:\"&#xf696;\";}s:18:\"fas fa-solar-panel\";a:2:{s:3:\"hex\";s:5:\"\\f5ba\";s:7:\"unicode\";s:8:\"&#xf5ba;\";}s:11:\"fas fa-sort\";a:2:{s:3:\"hex\";s:5:\"\\f0dc\";s:7:\"unicode\";s:8:\"&#xf0dc;\";}s:22:\"fas fa-sort-alpha-down\";a:2:{s:3:\"hex\";s:5:\"\\f15d\";s:7:\"unicode\";s:8:\"&#xf15d;\";}s:26:\"fas fa-sort-alpha-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f881\";s:7:\"unicode\";s:8:\"&#xf881;\";}s:20:\"fas fa-sort-alpha-up\";a:2:{s:3:\"hex\";s:5:\"\\f15e\";s:7:\"unicode\";s:8:\"&#xf15e;\";}s:24:\"fas fa-sort-alpha-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f882\";s:7:\"unicode\";s:8:\"&#xf882;\";}s:23:\"fas fa-sort-amount-down\";a:2:{s:3:\"hex\";s:5:\"\\f160\";s:7:\"unicode\";s:8:\"&#xf160;\";}s:27:\"fas fa-sort-amount-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f884\";s:7:\"unicode\";s:8:\"&#xf884;\";}s:21:\"fas fa-sort-amount-up\";a:2:{s:3:\"hex\";s:5:\"\\f161\";s:7:\"unicode\";s:8:\"&#xf161;\";}s:25:\"fas fa-sort-amount-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f885\";s:7:\"unicode\";s:8:\"&#xf885;\";}s:16:\"fas fa-sort-down\";a:2:{s:3:\"hex\";s:5:\"\\f0dd\";s:7:\"unicode\";s:8:\"&#xf0dd;\";}s:24:\"fas fa-sort-numeric-down\";a:2:{s:3:\"hex\";s:5:\"\\f162\";s:7:\"unicode\";s:8:\"&#xf162;\";}s:28:\"fas fa-sort-numeric-down-alt\";a:2:{s:3:\"hex\";s:5:\"\\f886\";s:7:\"unicode\";s:8:\"&#xf886;\";}s:22:\"fas fa-sort-numeric-up\";a:2:{s:3:\"hex\";s:5:\"\\f163\";s:7:\"unicode\";s:8:\"&#xf163;\";}s:26:\"fas fa-sort-numeric-up-alt\";a:2:{s:3:\"hex\";s:5:\"\\f887\";s:7:\"unicode\";s:8:\"&#xf887;\";}s:14:\"fas fa-sort-up\";a:2:{s:3:\"hex\";s:5:\"\\f0de\";s:7:\"unicode\";s:8:\"&#xf0de;\";}s:10:\"fas fa-spa\";a:2:{s:3:\"hex\";s:5:\"\\f5bb\";s:7:\"unicode\";s:8:\"&#xf5bb;\";}s:20:\"fas fa-space-shuttle\";a:2:{s:3:\"hex\";s:5:\"\\f197\";s:7:\"unicode\";s:8:\"&#xf197;\";}s:18:\"fas fa-spell-check\";a:2:{s:3:\"hex\";s:5:\"\\f891\";s:7:\"unicode\";s:8:\"&#xf891;\";}s:13:\"fas fa-spider\";a:2:{s:3:\"hex\";s:5:\"\\f717\";s:7:\"unicode\";s:8:\"&#xf717;\";}s:14:\"fas fa-spinner\";a:2:{s:3:\"hex\";s:5:\"\\f110\";s:7:\"unicode\";s:8:\"&#xf110;\";}s:14:\"fas fa-splotch\";a:2:{s:3:\"hex\";s:5:\"\\f5bc\";s:7:\"unicode\";s:8:\"&#xf5bc;\";}s:16:\"fas fa-spray-can\";a:2:{s:3:\"hex\";s:5:\"\\f5bd\";s:7:\"unicode\";s:8:\"&#xf5bd;\";}s:13:\"fas fa-square\";a:2:{s:3:\"hex\";s:5:\"\\f0c8\";s:7:\"unicode\";s:8:\"&#xf0c8;\";}s:18:\"fas fa-square-full\";a:2:{s:3:\"hex\";s:5:\"\\f45c\";s:7:\"unicode\";s:8:\"&#xf45c;\";}s:22:\"fas fa-square-root-alt\";a:2:{s:3:\"hex\";s:5:\"\\f698\";s:7:\"unicode\";s:8:\"&#xf698;\";}s:12:\"fas fa-stamp\";a:2:{s:3:\"hex\";s:5:\"\\f5bf\";s:7:\"unicode\";s:8:\"&#xf5bf;\";}s:11:\"fas fa-star\";a:2:{s:3:\"hex\";s:5:\"\\f005\";s:7:\"unicode\";s:8:\"&#xf005;\";}s:24:\"fas fa-star-and-crescent\";a:2:{s:3:\"hex\";s:5:\"\\f699\";s:7:\"unicode\";s:8:\"&#xf699;\";}s:16:\"fas fa-star-half\";a:2:{s:3:\"hex\";s:5:\"\\f089\";s:7:\"unicode\";s:8:\"&#xf089;\";}s:20:\"fas fa-star-half-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5c0\";s:7:\"unicode\";s:8:\"&#xf5c0;\";}s:20:\"fas fa-star-of-david\";a:2:{s:3:\"hex\";s:5:\"\\f69a\";s:7:\"unicode\";s:8:\"&#xf69a;\";}s:19:\"fas fa-star-of-life\";a:2:{s:3:\"hex\";s:5:\"\\f621\";s:7:\"unicode\";s:8:\"&#xf621;\";}s:20:\"fas fa-step-backward\";a:2:{s:3:\"hex\";s:5:\"\\f048\";s:7:\"unicode\";s:8:\"&#xf048;\";}s:19:\"fas fa-step-forward\";a:2:{s:3:\"hex\";s:5:\"\\f051\";s:7:\"unicode\";s:8:\"&#xf051;\";}s:18:\"fas fa-stethoscope\";a:2:{s:3:\"hex\";s:5:\"\\f0f1\";s:7:\"unicode\";s:8:\"&#xf0f1;\";}s:18:\"fas fa-sticky-note\";a:2:{s:3:\"hex\";s:5:\"\\f249\";s:7:\"unicode\";s:8:\"&#xf249;\";}s:11:\"fas fa-stop\";a:2:{s:3:\"hex\";s:5:\"\\f04d\";s:7:\"unicode\";s:8:\"&#xf04d;\";}s:18:\"fas fa-stop-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28d\";s:7:\"unicode\";s:8:\"&#xf28d;\";}s:16:\"fas fa-stopwatch\";a:2:{s:3:\"hex\";s:5:\"\\f2f2\";s:7:\"unicode\";s:8:\"&#xf2f2;\";}s:19:\"fas fa-stopwatch-20\";a:2:{s:3:\"hex\";s:5:\"\\e06f\";s:7:\"unicode\";s:8:\"&#xe06f;\";}s:12:\"fas fa-store\";a:2:{s:3:\"hex\";s:5:\"\\f54e\";s:7:\"unicode\";s:8:\"&#xf54e;\";}s:16:\"fas fa-store-alt\";a:2:{s:3:\"hex\";s:5:\"\\f54f\";s:7:\"unicode\";s:8:\"&#xf54f;\";}s:22:\"fas fa-store-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\e070\";s:7:\"unicode\";s:8:\"&#xe070;\";}s:18:\"fas fa-store-slash\";a:2:{s:3:\"hex\";s:5:\"\\e071\";s:7:\"unicode\";s:8:\"&#xe071;\";}s:13:\"fas fa-stream\";a:2:{s:3:\"hex\";s:5:\"\\f550\";s:7:\"unicode\";s:8:\"&#xf550;\";}s:18:\"fas fa-street-view\";a:2:{s:3:\"hex\";s:5:\"\\f21d\";s:7:\"unicode\";s:8:\"&#xf21d;\";}s:20:\"fas fa-strikethrough\";a:2:{s:3:\"hex\";s:5:\"\\f0cc\";s:7:\"unicode\";s:8:\"&#xf0cc;\";}s:18:\"fas fa-stroopwafel\";a:2:{s:3:\"hex\";s:5:\"\\f551\";s:7:\"unicode\";s:8:\"&#xf551;\";}s:16:\"fas fa-subscript\";a:2:{s:3:\"hex\";s:5:\"\\f12c\";s:7:\"unicode\";s:8:\"&#xf12c;\";}s:13:\"fas fa-subway\";a:2:{s:3:\"hex\";s:5:\"\\f239\";s:7:\"unicode\";s:8:\"&#xf239;\";}s:15:\"fas fa-suitcase\";a:2:{s:3:\"hex\";s:5:\"\\f0f2\";s:7:\"unicode\";s:8:\"&#xf0f2;\";}s:23:\"fas fa-suitcase-rolling\";a:2:{s:3:\"hex\";s:5:\"\\f5c1\";s:7:\"unicode\";s:8:\"&#xf5c1;\";}s:10:\"fas fa-sun\";a:2:{s:3:\"hex\";s:5:\"\\f185\";s:7:\"unicode\";s:8:\"&#xf185;\";}s:18:\"fas fa-superscript\";a:2:{s:3:\"hex\";s:5:\"\\f12b\";s:7:\"unicode\";s:8:\"&#xf12b;\";}s:15:\"fas fa-surprise\";a:2:{s:3:\"hex\";s:5:\"\\f5c2\";s:7:\"unicode\";s:8:\"&#xf5c2;\";}s:17:\"fas fa-swatchbook\";a:2:{s:3:\"hex\";s:5:\"\\f5c3\";s:7:\"unicode\";s:8:\"&#xf5c3;\";}s:14:\"fas fa-swimmer\";a:2:{s:3:\"hex\";s:5:\"\\f5c4\";s:7:\"unicode\";s:8:\"&#xf5c4;\";}s:20:\"fas fa-swimming-pool\";a:2:{s:3:\"hex\";s:5:\"\\f5c5\";s:7:\"unicode\";s:8:\"&#xf5c5;\";}s:16:\"fas fa-synagogue\";a:2:{s:3:\"hex\";s:5:\"\\f69b\";s:7:\"unicode\";s:8:\"&#xf69b;\";}s:11:\"fas fa-sync\";a:2:{s:3:\"hex\";s:5:\"\\f021\";s:7:\"unicode\";s:8:\"&#xf021;\";}s:15:\"fas fa-sync-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2f1\";s:7:\"unicode\";s:8:\"&#xf2f1;\";}s:14:\"fas fa-syringe\";a:2:{s:3:\"hex\";s:5:\"\\f48e\";s:7:\"unicode\";s:8:\"&#xf48e;\";}s:12:\"fas fa-table\";a:2:{s:3:\"hex\";s:5:\"\\f0ce\";s:7:\"unicode\";s:8:\"&#xf0ce;\";}s:19:\"fas fa-table-tennis\";a:2:{s:3:\"hex\";s:5:\"\\f45d\";s:7:\"unicode\";s:8:\"&#xf45d;\";}s:13:\"fas fa-tablet\";a:2:{s:3:\"hex\";s:5:\"\\f10a\";s:7:\"unicode\";s:8:\"&#xf10a;\";}s:17:\"fas fa-tablet-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3fa\";s:7:\"unicode\";s:8:\"&#xf3fa;\";}s:14:\"fas fa-tablets\";a:2:{s:3:\"hex\";s:5:\"\\f490\";s:7:\"unicode\";s:8:\"&#xf490;\";}s:21:\"fas fa-tachometer-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3fd\";s:7:\"unicode\";s:8:\"&#xf3fd;\";}s:10:\"fas fa-tag\";a:2:{s:3:\"hex\";s:5:\"\\f02b\";s:7:\"unicode\";s:8:\"&#xf02b;\";}s:11:\"fas fa-tags\";a:2:{s:3:\"hex\";s:5:\"\\f02c\";s:7:\"unicode\";s:8:\"&#xf02c;\";}s:11:\"fas fa-tape\";a:2:{s:3:\"hex\";s:5:\"\\f4db\";s:7:\"unicode\";s:8:\"&#xf4db;\";}s:12:\"fas fa-tasks\";a:2:{s:3:\"hex\";s:5:\"\\f0ae\";s:7:\"unicode\";s:8:\"&#xf0ae;\";}s:11:\"fas fa-taxi\";a:2:{s:3:\"hex\";s:5:\"\\f1ba\";s:7:\"unicode\";s:8:\"&#xf1ba;\";}s:12:\"fas fa-teeth\";a:2:{s:3:\"hex\";s:5:\"\\f62e\";s:7:\"unicode\";s:8:\"&#xf62e;\";}s:17:\"fas fa-teeth-open\";a:2:{s:3:\"hex\";s:5:\"\\f62f\";s:7:\"unicode\";s:8:\"&#xf62f;\";}s:23:\"fas fa-temperature-high\";a:2:{s:3:\"hex\";s:5:\"\\f769\";s:7:\"unicode\";s:8:\"&#xf769;\";}s:22:\"fas fa-temperature-low\";a:2:{s:3:\"hex\";s:5:\"\\f76b\";s:7:\"unicode\";s:8:\"&#xf76b;\";}s:12:\"fas fa-tenge\";a:2:{s:3:\"hex\";s:5:\"\\f7d7\";s:7:\"unicode\";s:8:\"&#xf7d7;\";}s:15:\"fas fa-terminal\";a:2:{s:3:\"hex\";s:5:\"\\f120\";s:7:\"unicode\";s:8:\"&#xf120;\";}s:18:\"fas fa-text-height\";a:2:{s:3:\"hex\";s:5:\"\\f034\";s:7:\"unicode\";s:8:\"&#xf034;\";}s:17:\"fas fa-text-width\";a:2:{s:3:\"hex\";s:5:\"\\f035\";s:7:\"unicode\";s:8:\"&#xf035;\";}s:9:\"fas fa-th\";a:2:{s:3:\"hex\";s:5:\"\\f00a\";s:7:\"unicode\";s:8:\"&#xf00a;\";}s:15:\"fas fa-th-large\";a:2:{s:3:\"hex\";s:5:\"\\f009\";s:7:\"unicode\";s:8:\"&#xf009;\";}s:14:\"fas fa-th-list\";a:2:{s:3:\"hex\";s:5:\"\\f00b\";s:7:\"unicode\";s:8:\"&#xf00b;\";}s:20:\"fas fa-theater-masks\";a:2:{s:3:\"hex\";s:5:\"\\f630\";s:7:\"unicode\";s:8:\"&#xf630;\";}s:18:\"fas fa-thermometer\";a:2:{s:3:\"hex\";s:5:\"\\f491\";s:7:\"unicode\";s:8:\"&#xf491;\";}s:24:\"fas fa-thermometer-empty\";a:2:{s:3:\"hex\";s:5:\"\\f2cb\";s:7:\"unicode\";s:8:\"&#xf2cb;\";}s:23:\"fas fa-thermometer-full\";a:2:{s:3:\"hex\";s:5:\"\\f2c7\";s:7:\"unicode\";s:8:\"&#xf2c7;\";}s:23:\"fas fa-thermometer-half\";a:2:{s:3:\"hex\";s:5:\"\\f2c9\";s:7:\"unicode\";s:8:\"&#xf2c9;\";}s:26:\"fas fa-thermometer-quarter\";a:2:{s:3:\"hex\";s:5:\"\\f2ca\";s:7:\"unicode\";s:8:\"&#xf2ca;\";}s:33:\"fas fa-thermometer-three-quarters\";a:2:{s:3:\"hex\";s:5:\"\\f2c8\";s:7:\"unicode\";s:8:\"&#xf2c8;\";}s:18:\"fas fa-thumbs-down\";a:2:{s:3:\"hex\";s:5:\"\\f165\";s:7:\"unicode\";s:8:\"&#xf165;\";}s:16:\"fas fa-thumbs-up\";a:2:{s:3:\"hex\";s:5:\"\\f164\";s:7:\"unicode\";s:8:\"&#xf164;\";}s:16:\"fas fa-thumbtack\";a:2:{s:3:\"hex\";s:5:\"\\f08d\";s:7:\"unicode\";s:8:\"&#xf08d;\";}s:17:\"fas fa-ticket-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3ff\";s:7:\"unicode\";s:8:\"&#xf3ff;\";}s:12:\"fas fa-times\";a:2:{s:3:\"hex\";s:5:\"\\f00d\";s:7:\"unicode\";s:8:\"&#xf00d;\";}s:19:\"fas fa-times-circle\";a:2:{s:3:\"hex\";s:5:\"\\f057\";s:7:\"unicode\";s:8:\"&#xf057;\";}s:11:\"fas fa-tint\";a:2:{s:3:\"hex\";s:5:\"\\f043\";s:7:\"unicode\";s:8:\"&#xf043;\";}s:17:\"fas fa-tint-slash\";a:2:{s:3:\"hex\";s:5:\"\\f5c7\";s:7:\"unicode\";s:8:\"&#xf5c7;\";}s:12:\"fas fa-tired\";a:2:{s:3:\"hex\";s:5:\"\\f5c8\";s:7:\"unicode\";s:8:\"&#xf5c8;\";}s:17:\"fas fa-toggle-off\";a:2:{s:3:\"hex\";s:5:\"\\f204\";s:7:\"unicode\";s:8:\"&#xf204;\";}s:16:\"fas fa-toggle-on\";a:2:{s:3:\"hex\";s:5:\"\\f205\";s:7:\"unicode\";s:8:\"&#xf205;\";}s:13:\"fas fa-toilet\";a:2:{s:3:\"hex\";s:5:\"\\f7d8\";s:7:\"unicode\";s:8:\"&#xf7d8;\";}s:19:\"fas fa-toilet-paper\";a:2:{s:3:\"hex\";s:5:\"\\f71e\";s:7:\"unicode\";s:8:\"&#xf71e;\";}s:25:\"fas fa-toilet-paper-slash\";a:2:{s:3:\"hex\";s:5:\"\\e072\";s:7:\"unicode\";s:8:\"&#xe072;\";}s:14:\"fas fa-toolbox\";a:2:{s:3:\"hex\";s:5:\"\\f552\";s:7:\"unicode\";s:8:\"&#xf552;\";}s:12:\"fas fa-tools\";a:2:{s:3:\"hex\";s:5:\"\\f7d9\";s:7:\"unicode\";s:8:\"&#xf7d9;\";}s:12:\"fas fa-tooth\";a:2:{s:3:\"hex\";s:5:\"\\f5c9\";s:7:\"unicode\";s:8:\"&#xf5c9;\";}s:12:\"fas fa-torah\";a:2:{s:3:\"hex\";s:5:\"\\f6a0\";s:7:\"unicode\";s:8:\"&#xf6a0;\";}s:17:\"fas fa-torii-gate\";a:2:{s:3:\"hex\";s:5:\"\\f6a1\";s:7:\"unicode\";s:8:\"&#xf6a1;\";}s:14:\"fas fa-tractor\";a:2:{s:3:\"hex\";s:5:\"\\f722\";s:7:\"unicode\";s:8:\"&#xf722;\";}s:16:\"fas fa-trademark\";a:2:{s:3:\"hex\";s:5:\"\\f25c\";s:7:\"unicode\";s:8:\"&#xf25c;\";}s:20:\"fas fa-traffic-light\";a:2:{s:3:\"hex\";s:5:\"\\f637\";s:7:\"unicode\";s:8:\"&#xf637;\";}s:14:\"fas fa-trailer\";a:2:{s:3:\"hex\";s:5:\"\\e041\";s:7:\"unicode\";s:8:\"&#xe041;\";}s:12:\"fas fa-train\";a:2:{s:3:\"hex\";s:5:\"\\f238\";s:7:\"unicode\";s:8:\"&#xf238;\";}s:11:\"fas fa-tram\";a:2:{s:3:\"hex\";s:5:\"\\f7da\";s:7:\"unicode\";s:8:\"&#xf7da;\";}s:18:\"fas fa-transgender\";a:2:{s:3:\"hex\";s:5:\"\\f224\";s:7:\"unicode\";s:8:\"&#xf224;\";}s:22:\"fas fa-transgender-alt\";a:2:{s:3:\"hex\";s:5:\"\\f225\";s:7:\"unicode\";s:8:\"&#xf225;\";}s:12:\"fas fa-trash\";a:2:{s:3:\"hex\";s:5:\"\\f1f8\";s:7:\"unicode\";s:8:\"&#xf1f8;\";}s:16:\"fas fa-trash-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2ed\";s:7:\"unicode\";s:8:\"&#xf2ed;\";}s:20:\"fas fa-trash-restore\";a:2:{s:3:\"hex\";s:5:\"\\f829\";s:7:\"unicode\";s:8:\"&#xf829;\";}s:24:\"fas fa-trash-restore-alt\";a:2:{s:3:\"hex\";s:5:\"\\f82a\";s:7:\"unicode\";s:8:\"&#xf82a;\";}s:11:\"fas fa-tree\";a:2:{s:3:\"hex\";s:5:\"\\f1bb\";s:7:\"unicode\";s:8:\"&#xf1bb;\";}s:13:\"fas fa-trophy\";a:2:{s:3:\"hex\";s:5:\"\\f091\";s:7:\"unicode\";s:8:\"&#xf091;\";}s:12:\"fas fa-truck\";a:2:{s:3:\"hex\";s:5:\"\\f0d1\";s:7:\"unicode\";s:8:\"&#xf0d1;\";}s:20:\"fas fa-truck-loading\";a:2:{s:3:\"hex\";s:5:\"\\f4de\";s:7:\"unicode\";s:8:\"&#xf4de;\";}s:20:\"fas fa-truck-monster\";a:2:{s:3:\"hex\";s:5:\"\\f63b\";s:7:\"unicode\";s:8:\"&#xf63b;\";}s:19:\"fas fa-truck-moving\";a:2:{s:3:\"hex\";s:5:\"\\f4df\";s:7:\"unicode\";s:8:\"&#xf4df;\";}s:19:\"fas fa-truck-pickup\";a:2:{s:3:\"hex\";s:5:\"\\f63c\";s:7:\"unicode\";s:8:\"&#xf63c;\";}s:13:\"fas fa-tshirt\";a:2:{s:3:\"hex\";s:5:\"\\f553\";s:7:\"unicode\";s:8:\"&#xf553;\";}s:10:\"fas fa-tty\";a:2:{s:3:\"hex\";s:5:\"\\f1e4\";s:7:\"unicode\";s:8:\"&#xf1e4;\";}s:9:\"fas fa-tv\";a:2:{s:3:\"hex\";s:5:\"\\f26c\";s:7:\"unicode\";s:8:\"&#xf26c;\";}s:15:\"fas fa-umbrella\";a:2:{s:3:\"hex\";s:5:\"\\f0e9\";s:7:\"unicode\";s:8:\"&#xf0e9;\";}s:21:\"fas fa-umbrella-beach\";a:2:{s:3:\"hex\";s:5:\"\\f5ca\";s:7:\"unicode\";s:8:\"&#xf5ca;\";}s:16:\"fas fa-underline\";a:2:{s:3:\"hex\";s:5:\"\\f0cd\";s:7:\"unicode\";s:8:\"&#xf0cd;\";}s:11:\"fas fa-undo\";a:2:{s:3:\"hex\";s:5:\"\\f0e2\";s:7:\"unicode\";s:8:\"&#xf0e2;\";}s:15:\"fas fa-undo-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2ea\";s:7:\"unicode\";s:8:\"&#xf2ea;\";}s:23:\"fas fa-universal-access\";a:2:{s:3:\"hex\";s:5:\"\\f29a\";s:7:\"unicode\";s:8:\"&#xf29a;\";}s:17:\"fas fa-university\";a:2:{s:3:\"hex\";s:5:\"\\f19c\";s:7:\"unicode\";s:8:\"&#xf19c;\";}s:13:\"fas fa-unlink\";a:2:{s:3:\"hex\";s:5:\"\\f127\";s:7:\"unicode\";s:8:\"&#xf127;\";}s:13:\"fas fa-unlock\";a:2:{s:3:\"hex\";s:5:\"\\f09c\";s:7:\"unicode\";s:8:\"&#xf09c;\";}s:17:\"fas fa-unlock-alt\";a:2:{s:3:\"hex\";s:5:\"\\f13e\";s:7:\"unicode\";s:8:\"&#xf13e;\";}s:13:\"fas fa-upload\";a:2:{s:3:\"hex\";s:5:\"\\f093\";s:7:\"unicode\";s:8:\"&#xf093;\";}s:11:\"fas fa-user\";a:2:{s:3:\"hex\";s:5:\"\\f007\";s:7:\"unicode\";s:8:\"&#xf007;\";}s:15:\"fas fa-user-alt\";a:2:{s:3:\"hex\";s:5:\"\\f406\";s:7:\"unicode\";s:8:\"&#xf406;\";}s:21:\"fas fa-user-alt-slash\";a:2:{s:3:\"hex\";s:5:\"\\f4fa\";s:7:\"unicode\";s:8:\"&#xf4fa;\";}s:21:\"fas fa-user-astronaut\";a:2:{s:3:\"hex\";s:5:\"\\f4fb\";s:7:\"unicode\";s:8:\"&#xf4fb;\";}s:17:\"fas fa-user-check\";a:2:{s:3:\"hex\";s:5:\"\\f4fc\";s:7:\"unicode\";s:8:\"&#xf4fc;\";}s:18:\"fas fa-user-circle\";a:2:{s:3:\"hex\";s:5:\"\\f2bd\";s:7:\"unicode\";s:8:\"&#xf2bd;\";}s:17:\"fas fa-user-clock\";a:2:{s:3:\"hex\";s:5:\"\\f4fd\";s:7:\"unicode\";s:8:\"&#xf4fd;\";}s:15:\"fas fa-user-cog\";a:2:{s:3:\"hex\";s:5:\"\\f4fe\";s:7:\"unicode\";s:8:\"&#xf4fe;\";}s:16:\"fas fa-user-edit\";a:2:{s:3:\"hex\";s:5:\"\\f4ff\";s:7:\"unicode\";s:8:\"&#xf4ff;\";}s:19:\"fas fa-user-friends\";a:2:{s:3:\"hex\";s:5:\"\\f500\";s:7:\"unicode\";s:8:\"&#xf500;\";}s:20:\"fas fa-user-graduate\";a:2:{s:3:\"hex\";s:5:\"\\f501\";s:7:\"unicode\";s:8:\"&#xf501;\";}s:19:\"fas fa-user-injured\";a:2:{s:3:\"hex\";s:5:\"\\f728\";s:7:\"unicode\";s:8:\"&#xf728;\";}s:16:\"fas fa-user-lock\";a:2:{s:3:\"hex\";s:5:\"\\f502\";s:7:\"unicode\";s:8:\"&#xf502;\";}s:14:\"fas fa-user-md\";a:2:{s:3:\"hex\";s:5:\"\\f0f0\";s:7:\"unicode\";s:8:\"&#xf0f0;\";}s:17:\"fas fa-user-minus\";a:2:{s:3:\"hex\";s:5:\"\\f503\";s:7:\"unicode\";s:8:\"&#xf503;\";}s:17:\"fas fa-user-ninja\";a:2:{s:3:\"hex\";s:5:\"\\f504\";s:7:\"unicode\";s:8:\"&#xf504;\";}s:17:\"fas fa-user-nurse\";a:2:{s:3:\"hex\";s:5:\"\\f82f\";s:7:\"unicode\";s:8:\"&#xf82f;\";}s:16:\"fas fa-user-plus\";a:2:{s:3:\"hex\";s:5:\"\\f234\";s:7:\"unicode\";s:8:\"&#xf234;\";}s:18:\"fas fa-user-secret\";a:2:{s:3:\"hex\";s:5:\"\\f21b\";s:7:\"unicode\";s:8:\"&#xf21b;\";}s:18:\"fas fa-user-shield\";a:2:{s:3:\"hex\";s:5:\"\\f505\";s:7:\"unicode\";s:8:\"&#xf505;\";}s:17:\"fas fa-user-slash\";a:2:{s:3:\"hex\";s:5:\"\\f506\";s:7:\"unicode\";s:8:\"&#xf506;\";}s:15:\"fas fa-user-tag\";a:2:{s:3:\"hex\";s:5:\"\\f507\";s:7:\"unicode\";s:8:\"&#xf507;\";}s:15:\"fas fa-user-tie\";a:2:{s:3:\"hex\";s:5:\"\\f508\";s:7:\"unicode\";s:8:\"&#xf508;\";}s:17:\"fas fa-user-times\";a:2:{s:3:\"hex\";s:5:\"\\f235\";s:7:\"unicode\";s:8:\"&#xf235;\";}s:12:\"fas fa-users\";a:2:{s:3:\"hex\";s:5:\"\\f0c0\";s:7:\"unicode\";s:8:\"&#xf0c0;\";}s:16:\"fas fa-users-cog\";a:2:{s:3:\"hex\";s:5:\"\\f509\";s:7:\"unicode\";s:8:\"&#xf509;\";}s:18:\"fas fa-users-slash\";a:2:{s:3:\"hex\";s:5:\"\\e073\";s:7:\"unicode\";s:8:\"&#xe073;\";}s:20:\"fas fa-utensil-spoon\";a:2:{s:3:\"hex\";s:5:\"\\f2e5\";s:7:\"unicode\";s:8:\"&#xf2e5;\";}s:15:\"fas fa-utensils\";a:2:{s:3:\"hex\";s:5:\"\\f2e7\";s:7:\"unicode\";s:8:\"&#xf2e7;\";}s:20:\"fas fa-vector-square\";a:2:{s:3:\"hex\";s:5:\"\\f5cb\";s:7:\"unicode\";s:8:\"&#xf5cb;\";}s:12:\"fas fa-venus\";a:2:{s:3:\"hex\";s:5:\"\\f221\";s:7:\"unicode\";s:8:\"&#xf221;\";}s:19:\"fas fa-venus-double\";a:2:{s:3:\"hex\";s:5:\"\\f226\";s:7:\"unicode\";s:8:\"&#xf226;\";}s:17:\"fas fa-venus-mars\";a:2:{s:3:\"hex\";s:5:\"\\f228\";s:7:\"unicode\";s:8:\"&#xf228;\";}s:11:\"fas fa-vest\";a:2:{s:3:\"hex\";s:5:\"\\e085\";s:7:\"unicode\";s:8:\"&#xe085;\";}s:19:\"fas fa-vest-patches\";a:2:{s:3:\"hex\";s:5:\"\\e086\";s:7:\"unicode\";s:8:\"&#xe086;\";}s:11:\"fas fa-vial\";a:2:{s:3:\"hex\";s:5:\"\\f492\";s:7:\"unicode\";s:8:\"&#xf492;\";}s:12:\"fas fa-vials\";a:2:{s:3:\"hex\";s:5:\"\\f493\";s:7:\"unicode\";s:8:\"&#xf493;\";}s:12:\"fas fa-video\";a:2:{s:3:\"hex\";s:5:\"\\f03d\";s:7:\"unicode\";s:8:\"&#xf03d;\";}s:18:\"fas fa-video-slash\";a:2:{s:3:\"hex\";s:5:\"\\f4e2\";s:7:\"unicode\";s:8:\"&#xf4e2;\";}s:13:\"fas fa-vihara\";a:2:{s:3:\"hex\";s:5:\"\\f6a7\";s:7:\"unicode\";s:8:\"&#xf6a7;\";}s:12:\"fas fa-virus\";a:2:{s:3:\"hex\";s:5:\"\\e074\";s:7:\"unicode\";s:8:\"&#xe074;\";}s:18:\"fas fa-virus-slash\";a:2:{s:3:\"hex\";s:5:\"\\e075\";s:7:\"unicode\";s:8:\"&#xe075;\";}s:14:\"fas fa-viruses\";a:2:{s:3:\"hex\";s:5:\"\\e076\";s:7:\"unicode\";s:8:\"&#xe076;\";}s:16:\"fas fa-voicemail\";a:2:{s:3:\"hex\";s:5:\"\\f897\";s:7:\"unicode\";s:8:\"&#xf897;\";}s:22:\"fas fa-volleyball-ball\";a:2:{s:3:\"hex\";s:5:\"\\f45f\";s:7:\"unicode\";s:8:\"&#xf45f;\";}s:18:\"fas fa-volume-down\";a:2:{s:3:\"hex\";s:5:\"\\f027\";s:7:\"unicode\";s:8:\"&#xf027;\";}s:18:\"fas fa-volume-mute\";a:2:{s:3:\"hex\";s:5:\"\\f6a9\";s:7:\"unicode\";s:8:\"&#xf6a9;\";}s:17:\"fas fa-volume-off\";a:2:{s:3:\"hex\";s:5:\"\\f026\";s:7:\"unicode\";s:8:\"&#xf026;\";}s:16:\"fas fa-volume-up\";a:2:{s:3:\"hex\";s:5:\"\\f028\";s:7:\"unicode\";s:8:\"&#xf028;\";}s:15:\"fas fa-vote-yea\";a:2:{s:3:\"hex\";s:5:\"\\f772\";s:7:\"unicode\";s:8:\"&#xf772;\";}s:19:\"fas fa-vr-cardboard\";a:2:{s:3:\"hex\";s:5:\"\\f729\";s:7:\"unicode\";s:8:\"&#xf729;\";}s:14:\"fas fa-walking\";a:2:{s:3:\"hex\";s:5:\"\\f554\";s:7:\"unicode\";s:8:\"&#xf554;\";}s:13:\"fas fa-wallet\";a:2:{s:3:\"hex\";s:5:\"\\f555\";s:7:\"unicode\";s:8:\"&#xf555;\";}s:16:\"fas fa-warehouse\";a:2:{s:3:\"hex\";s:5:\"\\f494\";s:7:\"unicode\";s:8:\"&#xf494;\";}s:12:\"fas fa-water\";a:2:{s:3:\"hex\";s:5:\"\\f773\";s:7:\"unicode\";s:8:\"&#xf773;\";}s:18:\"fas fa-wave-square\";a:2:{s:3:\"hex\";s:5:\"\\f83e\";s:7:\"unicode\";s:8:\"&#xf83e;\";}s:13:\"fas fa-weight\";a:2:{s:3:\"hex\";s:5:\"\\f496\";s:7:\"unicode\";s:8:\"&#xf496;\";}s:21:\"fas fa-weight-hanging\";a:2:{s:3:\"hex\";s:5:\"\\f5cd\";s:7:\"unicode\";s:8:\"&#xf5cd;\";}s:17:\"fas fa-wheelchair\";a:2:{s:3:\"hex\";s:5:\"\\f193\";s:7:\"unicode\";s:8:\"&#xf193;\";}s:11:\"fas fa-wifi\";a:2:{s:3:\"hex\";s:5:\"\\f1eb\";s:7:\"unicode\";s:8:\"&#xf1eb;\";}s:11:\"fas fa-wind\";a:2:{s:3:\"hex\";s:5:\"\\f72e\";s:7:\"unicode\";s:8:\"&#xf72e;\";}s:19:\"fas fa-window-close\";a:2:{s:3:\"hex\";s:5:\"\\f410\";s:7:\"unicode\";s:8:\"&#xf410;\";}s:22:\"fas fa-window-maximize\";a:2:{s:3:\"hex\";s:5:\"\\f2d0\";s:7:\"unicode\";s:8:\"&#xf2d0;\";}s:22:\"fas fa-window-minimize\";a:2:{s:3:\"hex\";s:5:\"\\f2d1\";s:7:\"unicode\";s:8:\"&#xf2d1;\";}s:21:\"fas fa-window-restore\";a:2:{s:3:\"hex\";s:5:\"\\f2d2\";s:7:\"unicode\";s:8:\"&#xf2d2;\";}s:18:\"fas fa-wine-bottle\";a:2:{s:3:\"hex\";s:5:\"\\f72f\";s:7:\"unicode\";s:8:\"&#xf72f;\";}s:17:\"fas fa-wine-glass\";a:2:{s:3:\"hex\";s:5:\"\\f4e3\";s:7:\"unicode\";s:8:\"&#xf4e3;\";}s:21:\"fas fa-wine-glass-alt\";a:2:{s:3:\"hex\";s:5:\"\\f5ce\";s:7:\"unicode\";s:8:\"&#xf5ce;\";}s:15:\"fas fa-won-sign\";a:2:{s:3:\"hex\";s:5:\"\\f159\";s:7:\"unicode\";s:8:\"&#xf159;\";}s:13:\"fas fa-wrench\";a:2:{s:3:\"hex\";s:5:\"\\f0ad\";s:7:\"unicode\";s:8:\"&#xf0ad;\";}s:12:\"fas fa-x-ray\";a:2:{s:3:\"hex\";s:5:\"\\f497\";s:7:\"unicode\";s:8:\"&#xf497;\";}s:15:\"fas fa-yen-sign\";a:2:{s:3:\"hex\";s:5:\"\\f157\";s:7:\"unicode\";s:8:\"&#xf157;\";}s:15:\"fas fa-yin-yang\";a:2:{s:3:\"hex\";s:5:\"\\f6ad\";s:7:\"unicode\";s:8:\"&#xf6ad;\";}}s:3:\"far\";a:152:{s:19:\"far fa-address-book\";a:2:{s:3:\"hex\";s:5:\"\\f2b9\";s:7:\"unicode\";s:8:\"&#xf2b9;\";}s:19:\"far fa-address-card\";a:2:{s:3:\"hex\";s:5:\"\\f2bb\";s:7:\"unicode\";s:8:\"&#xf2bb;\";}s:12:\"far fa-angry\";a:2:{s:3:\"hex\";s:5:\"\\f556\";s:7:\"unicode\";s:8:\"&#xf556;\";}s:28:\"far fa-arrow-alt-circle-down\";a:2:{s:3:\"hex\";s:5:\"\\f358\";s:7:\"unicode\";s:8:\"&#xf358;\";}s:28:\"far fa-arrow-alt-circle-left\";a:2:{s:3:\"hex\";s:5:\"\\f359\";s:7:\"unicode\";s:8:\"&#xf359;\";}s:29:\"far fa-arrow-alt-circle-right\";a:2:{s:3:\"hex\";s:5:\"\\f35a\";s:7:\"unicode\";s:8:\"&#xf35a;\";}s:26:\"far fa-arrow-alt-circle-up\";a:2:{s:3:\"hex\";s:5:\"\\f35b\";s:7:\"unicode\";s:8:\"&#xf35b;\";}s:11:\"far fa-bell\";a:2:{s:3:\"hex\";s:5:\"\\f0f3\";s:7:\"unicode\";s:8:\"&#xf0f3;\";}s:17:\"far fa-bell-slash\";a:2:{s:3:\"hex\";s:5:\"\\f1f6\";s:7:\"unicode\";s:8:\"&#xf1f6;\";}s:15:\"far fa-bookmark\";a:2:{s:3:\"hex\";s:5:\"\\f02e\";s:7:\"unicode\";s:8:\"&#xf02e;\";}s:15:\"far fa-building\";a:2:{s:3:\"hex\";s:5:\"\\f1ad\";s:7:\"unicode\";s:8:\"&#xf1ad;\";}s:15:\"far fa-calendar\";a:2:{s:3:\"hex\";s:5:\"\\f133\";s:7:\"unicode\";s:8:\"&#xf133;\";}s:19:\"far fa-calendar-alt\";a:2:{s:3:\"hex\";s:5:\"\\f073\";s:7:\"unicode\";s:8:\"&#xf073;\";}s:21:\"far fa-calendar-check\";a:2:{s:3:\"hex\";s:5:\"\\f274\";s:7:\"unicode\";s:8:\"&#xf274;\";}s:21:\"far fa-calendar-minus\";a:2:{s:3:\"hex\";s:5:\"\\f272\";s:7:\"unicode\";s:8:\"&#xf272;\";}s:20:\"far fa-calendar-plus\";a:2:{s:3:\"hex\";s:5:\"\\f271\";s:7:\"unicode\";s:8:\"&#xf271;\";}s:21:\"far fa-calendar-times\";a:2:{s:3:\"hex\";s:5:\"\\f273\";s:7:\"unicode\";s:8:\"&#xf273;\";}s:24:\"far fa-caret-square-down\";a:2:{s:3:\"hex\";s:5:\"\\f150\";s:7:\"unicode\";s:8:\"&#xf150;\";}s:24:\"far fa-caret-square-left\";a:2:{s:3:\"hex\";s:5:\"\\f191\";s:7:\"unicode\";s:8:\"&#xf191;\";}s:25:\"far fa-caret-square-right\";a:2:{s:3:\"hex\";s:5:\"\\f152\";s:7:\"unicode\";s:8:\"&#xf152;\";}s:22:\"far fa-caret-square-up\";a:2:{s:3:\"hex\";s:5:\"\\f151\";s:7:\"unicode\";s:8:\"&#xf151;\";}s:16:\"far fa-chart-bar\";a:2:{s:3:\"hex\";s:5:\"\\f080\";s:7:\"unicode\";s:8:\"&#xf080;\";}s:19:\"far fa-check-circle\";a:2:{s:3:\"hex\";s:5:\"\\f058\";s:7:\"unicode\";s:8:\"&#xf058;\";}s:19:\"far fa-check-square\";a:2:{s:3:\"hex\";s:5:\"\\f14a\";s:7:\"unicode\";s:8:\"&#xf14a;\";}s:13:\"far fa-circle\";a:2:{s:3:\"hex\";s:5:\"\\f111\";s:7:\"unicode\";s:8:\"&#xf111;\";}s:16:\"far fa-clipboard\";a:2:{s:3:\"hex\";s:5:\"\\f328\";s:7:\"unicode\";s:8:\"&#xf328;\";}s:12:\"far fa-clock\";a:2:{s:3:\"hex\";s:5:\"\\f017\";s:7:\"unicode\";s:8:\"&#xf017;\";}s:12:\"far fa-clone\";a:2:{s:3:\"hex\";s:5:\"\\f24d\";s:7:\"unicode\";s:8:\"&#xf24d;\";}s:24:\"far fa-closed-captioning\";a:2:{s:3:\"hex\";s:5:\"\\f20a\";s:7:\"unicode\";s:8:\"&#xf20a;\";}s:14:\"far fa-comment\";a:2:{s:3:\"hex\";s:5:\"\\f075\";s:7:\"unicode\";s:8:\"&#xf075;\";}s:18:\"far fa-comment-alt\";a:2:{s:3:\"hex\";s:5:\"\\f27a\";s:7:\"unicode\";s:8:\"&#xf27a;\";}s:19:\"far fa-comment-dots\";a:2:{s:3:\"hex\";s:5:\"\\f4ad\";s:7:\"unicode\";s:8:\"&#xf4ad;\";}s:15:\"far fa-comments\";a:2:{s:3:\"hex\";s:5:\"\\f086\";s:7:\"unicode\";s:8:\"&#xf086;\";}s:14:\"far fa-compass\";a:2:{s:3:\"hex\";s:5:\"\\f14e\";s:7:\"unicode\";s:8:\"&#xf14e;\";}s:11:\"far fa-copy\";a:2:{s:3:\"hex\";s:5:\"\\f0c5\";s:7:\"unicode\";s:8:\"&#xf0c5;\";}s:16:\"far fa-copyright\";a:2:{s:3:\"hex\";s:5:\"\\f1f9\";s:7:\"unicode\";s:8:\"&#xf1f9;\";}s:18:\"far fa-credit-card\";a:2:{s:3:\"hex\";s:5:\"\\f09d\";s:7:\"unicode\";s:8:\"&#xf09d;\";}s:12:\"far fa-dizzy\";a:2:{s:3:\"hex\";s:5:\"\\f567\";s:7:\"unicode\";s:8:\"&#xf567;\";}s:17:\"far fa-dot-circle\";a:2:{s:3:\"hex\";s:5:\"\\f192\";s:7:\"unicode\";s:8:\"&#xf192;\";}s:11:\"far fa-edit\";a:2:{s:3:\"hex\";s:5:\"\\f044\";s:7:\"unicode\";s:8:\"&#xf044;\";}s:15:\"far fa-envelope\";a:2:{s:3:\"hex\";s:5:\"\\f0e0\";s:7:\"unicode\";s:8:\"&#xf0e0;\";}s:20:\"far fa-envelope-open\";a:2:{s:3:\"hex\";s:5:\"\\f2b6\";s:7:\"unicode\";s:8:\"&#xf2b6;\";}s:10:\"far fa-eye\";a:2:{s:3:\"hex\";s:5:\"\\f06e\";s:7:\"unicode\";s:8:\"&#xf06e;\";}s:16:\"far fa-eye-slash\";a:2:{s:3:\"hex\";s:5:\"\\f070\";s:7:\"unicode\";s:8:\"&#xf070;\";}s:11:\"far fa-file\";a:2:{s:3:\"hex\";s:5:\"\\f15b\";s:7:\"unicode\";s:8:\"&#xf15b;\";}s:15:\"far fa-file-alt\";a:2:{s:3:\"hex\";s:5:\"\\f15c\";s:7:\"unicode\";s:8:\"&#xf15c;\";}s:19:\"far fa-file-archive\";a:2:{s:3:\"hex\";s:5:\"\\f1c6\";s:7:\"unicode\";s:8:\"&#xf1c6;\";}s:17:\"far fa-file-audio\";a:2:{s:3:\"hex\";s:5:\"\\f1c7\";s:7:\"unicode\";s:8:\"&#xf1c7;\";}s:16:\"far fa-file-code\";a:2:{s:3:\"hex\";s:5:\"\\f1c9\";s:7:\"unicode\";s:8:\"&#xf1c9;\";}s:17:\"far fa-file-excel\";a:2:{s:3:\"hex\";s:5:\"\\f1c3\";s:7:\"unicode\";s:8:\"&#xf1c3;\";}s:17:\"far fa-file-image\";a:2:{s:3:\"hex\";s:5:\"\\f1c5\";s:7:\"unicode\";s:8:\"&#xf1c5;\";}s:15:\"far fa-file-pdf\";a:2:{s:3:\"hex\";s:5:\"\\f1c1\";s:7:\"unicode\";s:8:\"&#xf1c1;\";}s:22:\"far fa-file-powerpoint\";a:2:{s:3:\"hex\";s:5:\"\\f1c4\";s:7:\"unicode\";s:8:\"&#xf1c4;\";}s:17:\"far fa-file-video\";a:2:{s:3:\"hex\";s:5:\"\\f1c8\";s:7:\"unicode\";s:8:\"&#xf1c8;\";}s:16:\"far fa-file-word\";a:2:{s:3:\"hex\";s:5:\"\\f1c2\";s:7:\"unicode\";s:8:\"&#xf1c2;\";}s:11:\"far fa-flag\";a:2:{s:3:\"hex\";s:5:\"\\f024\";s:7:\"unicode\";s:8:\"&#xf024;\";}s:14:\"far fa-flushed\";a:2:{s:3:\"hex\";s:5:\"\\f579\";s:7:\"unicode\";s:8:\"&#xf579;\";}s:13:\"far fa-folder\";a:2:{s:3:\"hex\";s:5:\"\\f07b\";s:7:\"unicode\";s:8:\"&#xf07b;\";}s:18:\"far fa-folder-open\";a:2:{s:3:\"hex\";s:5:\"\\f07c\";s:7:\"unicode\";s:8:\"&#xf07c;\";}s:29:\"far fa-font-awesome-logo-full\";a:2:{s:3:\"hex\";s:5:\"\\f4e6\";s:7:\"unicode\";s:8:\"&#xf4e6;\";}s:12:\"far fa-frown\";a:2:{s:3:\"hex\";s:5:\"\\f119\";s:7:\"unicode\";s:8:\"&#xf119;\";}s:17:\"far fa-frown-open\";a:2:{s:3:\"hex\";s:5:\"\\f57a\";s:7:\"unicode\";s:8:\"&#xf57a;\";}s:13:\"far fa-futbol\";a:2:{s:3:\"hex\";s:5:\"\\f1e3\";s:7:\"unicode\";s:8:\"&#xf1e3;\";}s:10:\"far fa-gem\";a:2:{s:3:\"hex\";s:5:\"\\f3a5\";s:7:\"unicode\";s:8:\"&#xf3a5;\";}s:14:\"far fa-grimace\";a:2:{s:3:\"hex\";s:5:\"\\f57f\";s:7:\"unicode\";s:8:\"&#xf57f;\";}s:11:\"far fa-grin\";a:2:{s:3:\"hex\";s:5:\"\\f580\";s:7:\"unicode\";s:8:\"&#xf580;\";}s:15:\"far fa-grin-alt\";a:2:{s:3:\"hex\";s:5:\"\\f581\";s:7:\"unicode\";s:8:\"&#xf581;\";}s:16:\"far fa-grin-beam\";a:2:{s:3:\"hex\";s:5:\"\\f582\";s:7:\"unicode\";s:8:\"&#xf582;\";}s:22:\"far fa-grin-beam-sweat\";a:2:{s:3:\"hex\";s:5:\"\\f583\";s:7:\"unicode\";s:8:\"&#xf583;\";}s:18:\"far fa-grin-hearts\";a:2:{s:3:\"hex\";s:5:\"\\f584\";s:7:\"unicode\";s:8:\"&#xf584;\";}s:18:\"far fa-grin-squint\";a:2:{s:3:\"hex\";s:5:\"\\f585\";s:7:\"unicode\";s:8:\"&#xf585;\";}s:24:\"far fa-grin-squint-tears\";a:2:{s:3:\"hex\";s:5:\"\\f586\";s:7:\"unicode\";s:8:\"&#xf586;\";}s:17:\"far fa-grin-stars\";a:2:{s:3:\"hex\";s:5:\"\\f587\";s:7:\"unicode\";s:8:\"&#xf587;\";}s:17:\"far fa-grin-tears\";a:2:{s:3:\"hex\";s:5:\"\\f588\";s:7:\"unicode\";s:8:\"&#xf588;\";}s:18:\"far fa-grin-tongue\";a:2:{s:3:\"hex\";s:5:\"\\f589\";s:7:\"unicode\";s:8:\"&#xf589;\";}s:25:\"far fa-grin-tongue-squint\";a:2:{s:3:\"hex\";s:5:\"\\f58a\";s:7:\"unicode\";s:8:\"&#xf58a;\";}s:23:\"far fa-grin-tongue-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58b\";s:7:\"unicode\";s:8:\"&#xf58b;\";}s:16:\"far fa-grin-wink\";a:2:{s:3:\"hex\";s:5:\"\\f58c\";s:7:\"unicode\";s:8:\"&#xf58c;\";}s:18:\"far fa-hand-lizard\";a:2:{s:3:\"hex\";s:5:\"\\f258\";s:7:\"unicode\";s:8:\"&#xf258;\";}s:17:\"far fa-hand-paper\";a:2:{s:3:\"hex\";s:5:\"\\f256\";s:7:\"unicode\";s:8:\"&#xf256;\";}s:17:\"far fa-hand-peace\";a:2:{s:3:\"hex\";s:5:\"\\f25b\";s:7:\"unicode\";s:8:\"&#xf25b;\";}s:22:\"far fa-hand-point-down\";a:2:{s:3:\"hex\";s:5:\"\\f0a7\";s:7:\"unicode\";s:8:\"&#xf0a7;\";}s:22:\"far fa-hand-point-left\";a:2:{s:3:\"hex\";s:5:\"\\f0a5\";s:7:\"unicode\";s:8:\"&#xf0a5;\";}s:23:\"far fa-hand-point-right\";a:2:{s:3:\"hex\";s:5:\"\\f0a4\";s:7:\"unicode\";s:8:\"&#xf0a4;\";}s:20:\"far fa-hand-point-up\";a:2:{s:3:\"hex\";s:5:\"\\f0a6\";s:7:\"unicode\";s:8:\"&#xf0a6;\";}s:19:\"far fa-hand-pointer\";a:2:{s:3:\"hex\";s:5:\"\\f25a\";s:7:\"unicode\";s:8:\"&#xf25a;\";}s:16:\"far fa-hand-rock\";a:2:{s:3:\"hex\";s:5:\"\\f255\";s:7:\"unicode\";s:8:\"&#xf255;\";}s:20:\"far fa-hand-scissors\";a:2:{s:3:\"hex\";s:5:\"\\f257\";s:7:\"unicode\";s:8:\"&#xf257;\";}s:17:\"far fa-hand-spock\";a:2:{s:3:\"hex\";s:5:\"\\f259\";s:7:\"unicode\";s:8:\"&#xf259;\";}s:16:\"far fa-handshake\";a:2:{s:3:\"hex\";s:5:\"\\f2b5\";s:7:\"unicode\";s:8:\"&#xf2b5;\";}s:10:\"far fa-hdd\";a:2:{s:3:\"hex\";s:5:\"\\f0a0\";s:7:\"unicode\";s:8:\"&#xf0a0;\";}s:12:\"far fa-heart\";a:2:{s:3:\"hex\";s:5:\"\\f004\";s:7:\"unicode\";s:8:\"&#xf004;\";}s:15:\"far fa-hospital\";a:2:{s:3:\"hex\";s:5:\"\\f0f8\";s:7:\"unicode\";s:8:\"&#xf0f8;\";}s:16:\"far fa-hourglass\";a:2:{s:3:\"hex\";s:5:\"\\f254\";s:7:\"unicode\";s:8:\"&#xf254;\";}s:15:\"far fa-id-badge\";a:2:{s:3:\"hex\";s:5:\"\\f2c1\";s:7:\"unicode\";s:8:\"&#xf2c1;\";}s:14:\"far fa-id-card\";a:2:{s:3:\"hex\";s:5:\"\\f2c2\";s:7:\"unicode\";s:8:\"&#xf2c2;\";}s:12:\"far fa-image\";a:2:{s:3:\"hex\";s:5:\"\\f03e\";s:7:\"unicode\";s:8:\"&#xf03e;\";}s:13:\"far fa-images\";a:2:{s:3:\"hex\";s:5:\"\\f302\";s:7:\"unicode\";s:8:\"&#xf302;\";}s:15:\"far fa-keyboard\";a:2:{s:3:\"hex\";s:5:\"\\f11c\";s:7:\"unicode\";s:8:\"&#xf11c;\";}s:11:\"far fa-kiss\";a:2:{s:3:\"hex\";s:5:\"\\f596\";s:7:\"unicode\";s:8:\"&#xf596;\";}s:16:\"far fa-kiss-beam\";a:2:{s:3:\"hex\";s:5:\"\\f597\";s:7:\"unicode\";s:8:\"&#xf597;\";}s:22:\"far fa-kiss-wink-heart\";a:2:{s:3:\"hex\";s:5:\"\\f598\";s:7:\"unicode\";s:8:\"&#xf598;\";}s:12:\"far fa-laugh\";a:2:{s:3:\"hex\";s:5:\"\\f599\";s:7:\"unicode\";s:8:\"&#xf599;\";}s:17:\"far fa-laugh-beam\";a:2:{s:3:\"hex\";s:5:\"\\f59a\";s:7:\"unicode\";s:8:\"&#xf59a;\";}s:19:\"far fa-laugh-squint\";a:2:{s:3:\"hex\";s:5:\"\\f59b\";s:7:\"unicode\";s:8:\"&#xf59b;\";}s:17:\"far fa-laugh-wink\";a:2:{s:3:\"hex\";s:5:\"\\f59c\";s:7:\"unicode\";s:8:\"&#xf59c;\";}s:12:\"far fa-lemon\";a:2:{s:3:\"hex\";s:5:\"\\f094\";s:7:\"unicode\";s:8:\"&#xf094;\";}s:16:\"far fa-life-ring\";a:2:{s:3:\"hex\";s:5:\"\\f1cd\";s:7:\"unicode\";s:8:\"&#xf1cd;\";}s:16:\"far fa-lightbulb\";a:2:{s:3:\"hex\";s:5:\"\\f0eb\";s:7:\"unicode\";s:8:\"&#xf0eb;\";}s:15:\"far fa-list-alt\";a:2:{s:3:\"hex\";s:5:\"\\f022\";s:7:\"unicode\";s:8:\"&#xf022;\";}s:10:\"far fa-map\";a:2:{s:3:\"hex\";s:5:\"\\f279\";s:7:\"unicode\";s:8:\"&#xf279;\";}s:10:\"far fa-meh\";a:2:{s:3:\"hex\";s:5:\"\\f11a\";s:7:\"unicode\";s:8:\"&#xf11a;\";}s:16:\"far fa-meh-blank\";a:2:{s:3:\"hex\";s:5:\"\\f5a4\";s:7:\"unicode\";s:8:\"&#xf5a4;\";}s:23:\"far fa-meh-rolling-eyes\";a:2:{s:3:\"hex\";s:5:\"\\f5a5\";s:7:\"unicode\";s:8:\"&#xf5a5;\";}s:19:\"far fa-minus-square\";a:2:{s:3:\"hex\";s:5:\"\\f146\";s:7:\"unicode\";s:8:\"&#xf146;\";}s:21:\"far fa-money-bill-alt\";a:2:{s:3:\"hex\";s:5:\"\\f3d1\";s:7:\"unicode\";s:8:\"&#xf3d1;\";}s:11:\"far fa-moon\";a:2:{s:3:\"hex\";s:5:\"\\f186\";s:7:\"unicode\";s:8:\"&#xf186;\";}s:16:\"far fa-newspaper\";a:2:{s:3:\"hex\";s:5:\"\\f1ea\";s:7:\"unicode\";s:8:\"&#xf1ea;\";}s:19:\"far fa-object-group\";a:2:{s:3:\"hex\";s:5:\"\\f247\";s:7:\"unicode\";s:8:\"&#xf247;\";}s:21:\"far fa-object-ungroup\";a:2:{s:3:\"hex\";s:5:\"\\f248\";s:7:\"unicode\";s:8:\"&#xf248;\";}s:18:\"far fa-paper-plane\";a:2:{s:3:\"hex\";s:5:\"\\f1d8\";s:7:\"unicode\";s:8:\"&#xf1d8;\";}s:19:\"far fa-pause-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28b\";s:7:\"unicode\";s:8:\"&#xf28b;\";}s:18:\"far fa-play-circle\";a:2:{s:3:\"hex\";s:5:\"\\f144\";s:7:\"unicode\";s:8:\"&#xf144;\";}s:18:\"far fa-plus-square\";a:2:{s:3:\"hex\";s:5:\"\\f0fe\";s:7:\"unicode\";s:8:\"&#xf0fe;\";}s:22:\"far fa-question-circle\";a:2:{s:3:\"hex\";s:5:\"\\f059\";s:7:\"unicode\";s:8:\"&#xf059;\";}s:17:\"far fa-registered\";a:2:{s:3:\"hex\";s:5:\"\\f25d\";s:7:\"unicode\";s:8:\"&#xf25d;\";}s:14:\"far fa-sad-cry\";a:2:{s:3:\"hex\";s:5:\"\\f5b3\";s:7:\"unicode\";s:8:\"&#xf5b3;\";}s:15:\"far fa-sad-tear\";a:2:{s:3:\"hex\";s:5:\"\\f5b4\";s:7:\"unicode\";s:8:\"&#xf5b4;\";}s:11:\"far fa-save\";a:2:{s:3:\"hex\";s:5:\"\\f0c7\";s:7:\"unicode\";s:8:\"&#xf0c7;\";}s:19:\"far fa-share-square\";a:2:{s:3:\"hex\";s:5:\"\\f14d\";s:7:\"unicode\";s:8:\"&#xf14d;\";}s:12:\"far fa-smile\";a:2:{s:3:\"hex\";s:5:\"\\f118\";s:7:\"unicode\";s:8:\"&#xf118;\";}s:17:\"far fa-smile-beam\";a:2:{s:3:\"hex\";s:5:\"\\f5b8\";s:7:\"unicode\";s:8:\"&#xf5b8;\";}s:17:\"far fa-smile-wink\";a:2:{s:3:\"hex\";s:5:\"\\f4da\";s:7:\"unicode\";s:8:\"&#xf4da;\";}s:16:\"far fa-snowflake\";a:2:{s:3:\"hex\";s:5:\"\\f2dc\";s:7:\"unicode\";s:8:\"&#xf2dc;\";}s:13:\"far fa-square\";a:2:{s:3:\"hex\";s:5:\"\\f0c8\";s:7:\"unicode\";s:8:\"&#xf0c8;\";}s:11:\"far fa-star\";a:2:{s:3:\"hex\";s:5:\"\\f005\";s:7:\"unicode\";s:8:\"&#xf005;\";}s:16:\"far fa-star-half\";a:2:{s:3:\"hex\";s:5:\"\\f089\";s:7:\"unicode\";s:8:\"&#xf089;\";}s:18:\"far fa-sticky-note\";a:2:{s:3:\"hex\";s:5:\"\\f249\";s:7:\"unicode\";s:8:\"&#xf249;\";}s:18:\"far fa-stop-circle\";a:2:{s:3:\"hex\";s:5:\"\\f28d\";s:7:\"unicode\";s:8:\"&#xf28d;\";}s:10:\"far fa-sun\";a:2:{s:3:\"hex\";s:5:\"\\f185\";s:7:\"unicode\";s:8:\"&#xf185;\";}s:15:\"far fa-surprise\";a:2:{s:3:\"hex\";s:5:\"\\f5c2\";s:7:\"unicode\";s:8:\"&#xf5c2;\";}s:18:\"far fa-thumbs-down\";a:2:{s:3:\"hex\";s:5:\"\\f165\";s:7:\"unicode\";s:8:\"&#xf165;\";}s:16:\"far fa-thumbs-up\";a:2:{s:3:\"hex\";s:5:\"\\f164\";s:7:\"unicode\";s:8:\"&#xf164;\";}s:19:\"far fa-times-circle\";a:2:{s:3:\"hex\";s:5:\"\\f057\";s:7:\"unicode\";s:8:\"&#xf057;\";}s:12:\"far fa-tired\";a:2:{s:3:\"hex\";s:5:\"\\f5c8\";s:7:\"unicode\";s:8:\"&#xf5c8;\";}s:16:\"far fa-trash-alt\";a:2:{s:3:\"hex\";s:5:\"\\f2ed\";s:7:\"unicode\";s:8:\"&#xf2ed;\";}s:11:\"far fa-user\";a:2:{s:3:\"hex\";s:5:\"\\f007\";s:7:\"unicode\";s:8:\"&#xf007;\";}s:18:\"far fa-user-circle\";a:2:{s:3:\"hex\";s:5:\"\\f2bd\";s:7:\"unicode\";s:8:\"&#xf2bd;\";}s:19:\"far fa-window-close\";a:2:{s:3:\"hex\";s:5:\"\\f410\";s:7:\"unicode\";s:8:\"&#xf410;\";}s:22:\"far fa-window-maximize\";a:2:{s:3:\"hex\";s:5:\"\\f2d0\";s:7:\"unicode\";s:8:\"&#xf2d0;\";}s:22:\"far fa-window-minimize\";a:2:{s:3:\"hex\";s:5:\"\\f2d1\";s:7:\"unicode\";s:8:\"&#xf2d1;\";}s:21:\"far fa-window-restore\";a:2:{s:3:\"hex\";s:5:\"\\f2d2\";s:7:\"unicode\";s:8:\"&#xf2d2;\";}}}}}','no'),(312,'wpcf7-mce-post-id','1','no'),(313,'wpcf7-mce-post-update','2020-10-30T14:11:29','no'),(314,'mce_conten_panel_master','<p class=\"about-description\">Easier setup to get you up and running in no time. Please <a href=\"https://renzojohnson.com/contact\" target=\"_blank\" rel=\"noopener noreferrer\">lets us know</a> what kind of features you would like to see added <a href=\"https://renzojohnson.com/contact\" target=\"_blank\" rel=\"noopener noreferrer\">HERE</a>.</p>\n<div class=\"welcome-panel-column-container\">\n<div class=\"welcome-panel-column\">\n<h3>Get Started</h3>\n<p>Make sure it works as you expect <br /><a class=\"button button-primary button-hero load-customize\" href=\"/wp-admin/admin.php?page=wpcf7\">Review your settings <span alt=\"f111\" class=\"dashicons dashicons-admin-generic\" style=\"font-size: 17px;vertical-align: middle;\"> </span> </a></p>\n</div>\n<div class=\"welcome-panel-column\">\n<h3>Next Steps</h3>\n<p>Help me develop the plugin and provide support by <br /><a class=\"donate button button-primary button-hero load-customize\" href=\"https://www.paypal.me/renzojohnson\" target=\"_blank\" rel=\"noopener noreferrer\">Donating even a small sum <span alt=\"f524\" class=\"dashicons dashicons-tickets-alt\"> </span></a></p>\n</div>\n</div>\n','no'),(315,'mce_conten_tittle_master','ChimpMatic Lite is now 0.5.28!','no'),(316,'mce_loyalty','a:11:{s:7:\"seconds\";i:35;s:7:\"minutes\";i:34;s:5:\"hours\";i:15;s:4:\"mday\";i:9;s:4:\"wday\";i:4;s:3:\"mon\";i:9;s:4:\"year\";i:2021;s:4:\"yday\";i:251;s:7:\"weekday\";s:8:\"Thursday\";s:5:\"month\";s:9:\"September\";i:0;i:1631201675;}','no'),(318,'ACFFA_active_icon_set','free','no'),(320,'woocommerce_refund_returns_page_id','13','yes'),(386,'woocommerce_meta_box_errors','a:0:{}','yes'),(323,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:19:\"alex@inspirable.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:19:\"alex@inspirable.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(324,'woocommerce_version','5.6.0','yes'),(325,'woocommerce_db_version','5.6.0','yes'),(396,'_transient_woocommerce_reports-transient-version','1631201690','yes'),(401,'woocommerce_onboarding_profile','a:1:{s:7:\"skipped\";b:1;}','yes'),(410,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),(411,'action_scheduler_migration_status','complete','yes'),(1561,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1634731222','no'),(1562,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1634688022','no'),(1563,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1634731222','no'),(1564,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/10/episode-18-the-economics-of-wordpress/\'>WP Briefing: Episode 18: The Economics of WordPress</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/10/the-month-in-wordpress-september-2021/\'>The Month in WordPress: September 2021</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/gutenberg-adoption-levels-1-5-page-builder-summit-october-2021/\'>Gutenberg Times: Gutenberg Adoption: Levels One through Five — Page Builder Summit, October 2021</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/build-notification-banners-with-elmastudios-latest-block-plugin?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=build-notification-banners-with-elmastudios-latest-block-plugin\'>WPTavern: Build Notification Banners With ElmaStudio’s Latest Block Plugin</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-contributors-propose-renaming-reusable-blocks?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gutenberg-contributors-propose-renaming-reusable-blocks\'>WPTavern: Gutenberg Contributors Propose Renaming Reusable Blocks</a></li></ul></div>','no'),(1565,'_transient_timeout_wc_onboarding_product_data','1634774441','no'),(1566,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 20 Oct 2021 00:00:41 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"12384\";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:4:\"x-rq\";s:13:\"bur6 0 4 9980\";s:16:\"content-encoding\";s:4:\"gzip\";s:3:\"age\";s:2:\"45\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}}s:4:\"body\";s:65093:\"{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.1,\"reviews_count\":51,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/wcpay-icon-fv4tef.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.5,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":64,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.6,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.2,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Listings &#038; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":112,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/pp_v_rgb-didybc.jpg\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.8,\"reviews_count\":39,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":20,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.6,\"reviews_count\":116,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 3000+ cloud apps and services today. Trusted by 10,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":31,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":49,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.3,\"reviews_count\":27,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.4,\"reviews_count\":35,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":null},{\"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 filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":97,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.8,\"reviews_count\":41,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":132,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Viva Wallet for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null},{\"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 Form, Opayo Direct or Opayo Pi. Supporting 3D Secure 2.0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Andrew Benbow\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/andrew-benbow\\/\",\"icon\":null}]}\";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:65093:\"{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.1,\"reviews_count\":51,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/wcpay-icon-fv4tef.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.5,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":64,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.6,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.2,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Listings &#038; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":112,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/pp_v_rgb-didybc.jpg\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.8,\"reviews_count\":39,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":20,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.6,\"reviews_count\":116,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 3000+ cloud apps and services today. Trusted by 10,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":31,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":49,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.3,\"reviews_count\":27,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.4,\"reviews_count\":35,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":null},{\"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 filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":97,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.8,\"reviews_count\":41,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":132,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Viva Wallet for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null},{\"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 Form, Opayo Direct or Opayo Pi. Supporting 3D Secure 2.0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Andrew Benbow\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/andrew-benbow\\/\",\"icon\":null}]}\";s:3:\"raw\";s:65773:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Wed, 20 Oct 2021 00:00:41 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 12384\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\nX-rq: bur6 0 4 9980\r\nContent-Encoding: gzip\r\nAge: 45\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\nStrict-Transport-Security: max-age=31536000\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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2.1,\"reviews_count\":51,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/wcpay-icon-fv4tef.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.5,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":64,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.6,\"reviews_count\":37,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3.2,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Listings &#038; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":112,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.2,\"reviews_count\":32,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/pp_v_rgb-didybc.jpg\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.8,\"reviews_count\":39,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":3,\"reviews_count\":16,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":20,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.6,\"reviews_count\":116,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 3000+ cloud apps and services today. Trusted by 10,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":31,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":49,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.3,\"reviews_count\":27,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.4,\"reviews_count\":35,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":null},{\"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 filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":97,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.8,\"reviews_count\":41,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":132,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"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=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"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=extensionsscreen&utm_medium=product&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,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Viva Wallet for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null},{\"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 Form, Opayo Direct or Opayo Pi. Supporting 3D Secure 2.0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Andrew Benbow\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/andrew-benbow\\/\",\"icon\":null}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Wed, 20 Oct 2021 00:00:41 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:\"12384\";}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:4:\"x-rq\";a:1:{i:0;s:13:\"bur6 0 4 9980\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:3:\"age\";a:1:{i:0;s:2:\"45\";}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:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=31536000\";}}}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'),(1545,'_site_transient_timeout_browser_ace4a307253af3628350236c42b96784','1635292817','no'),(1540,'_transient_timeout_wp_rocket_pricing','1634731198','no'),(1541,'_transient_wp_rocket_pricing','O:8:\"stdClass\":3:{s:8:\"licenses\";O:8:\"stdClass\":3:{s:6:\"single\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":3:{s:7:\"regular\";i:49;s:4:\"sale\";d:39.2000000000000028421709430404007434844970703125;s:7:\"renewal\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";d:24.5;s:15:\"not_grandfather\";d:34.2999999999999971578290569595992565155029296875;s:10:\"is_expired\";d:39.2000000000000028421709430404007434844970703125;}}s:8:\"websites\";i:1;}s:4:\"plus\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":4:{s:7:\"regular\";i:99;s:4:\"sale\";d:79.2000000000000028421709430404007434844970703125;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:50;s:4:\"sale\";i:40;}s:7:\"renewal\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";d:49.5;s:15:\"not_grandfather\";d:69.2999999999999971578290569595992565155029296875;s:10:\"is_expired\";d:79.2000000000000028421709430404007434844970703125;}}s:8:\"websites\";i:3;}s:8:\"infinite\";O:8:\"stdClass\":2:{s:6:\"prices\";O:8:\"stdClass\":5:{s:7:\"regular\";i:249;s:4:\"sale\";d:199.19999999999998863131622783839702606201171875;s:11:\"from_single\";O:8:\"stdClass\":2:{s:7:\"regular\";i:200;s:4:\"sale\";i:160;}s:9:\"from_plus\";O:8:\"stdClass\":2:{s:7:\"regular\";i:150;s:4:\"sale\";i:120;}s:7:\"renewal\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";d:124.5;s:15:\"not_grandfather\";d:174.30000000000001136868377216160297393798828125;s:10:\"is_expired\";d:199.19999999999998863131622783839702606201171875;}}s:8:\"websites\";s:9:\"unlimited\";}}s:8:\"renewals\";O:8:\"stdClass\":3:{s:10:\"extra_days\";i:90;s:16:\"grandfather_date\";i:1567296000;s:16:\"discount_percent\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";i:50;s:15:\"not_grandfather\";i:30;s:10:\"is_expired\";i:20;}}s:5:\"promo\";O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Halloween\";s:16:\"discount_percent\";i:25;s:10:\"start_date\";i:1635206400;s:8:\"end_date\";i:1635983999;}}','no'),(1547,'_site_transient_timeout_php_check_d4508776add2ac959ef9a5d5285e77c3','1635292817','no'),(1548,'_site_transient_php_check_d4508776add2ac959ef9a5d5285e77c3','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(1532,'_transient_timeout__woocommerce_helper_subscriptions','1634688894','no'),(1533,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(1383,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(1525,'_transient_timeout_rocket_get_refreshed_fragments_cache','1635292791','no'),(1526,'_transient_rocket_get_refreshed_fragments_cache','{\"fragments\":{\"div.widget_shopping_cart_content\":\"<div class=\\\"widget_shopping_cart_content\\\">\\n\\n\\t<p class=\\\"woocommerce-mini-cart__empty-message\\\">No products in the cart.<\\/p>\\n\\n\\n<\\/div>\",\"a.cart-contents\":\"<a class=\\\"cart-contents\\\" href=\\\"https:\\/\\/candc117.dev34.info\\/cart\\/\\\" title=\\\"View your shopping cart\\\">\\n<span class=\\\"amount\\\">&#036;0.00<\\/span> <span class=\\\"count\\\">0 items<\\/span>\\n<\\/a>\\n\"},\"cart_hash\":\"\"}','no'),(1538,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1634687995;s:8:\"response\";a:7:{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:5:\"4.2.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.1.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:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";b: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.5.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.5.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:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";b:0;}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.4.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2597493\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:5:\"4.3.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/redux-framework.4.3.1.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:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";s:3:\"7.1\";}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.8.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";s:3:\"7.0\";}s:41:\"woo-product-filter/woo-product-filter.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/woo-product-filter\";s:4:\"slug\";s:18:\"woo-product-filter\";s:6:\"plugin\";s:41:\"woo-product-filter/woo-product-filter.php\";s:11:\"new_version\";s:5:\"2.0.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/woo-product-filter/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/woo-product-filter.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/woo-product-filter/assets/icon-256x256.png?rev=1896877\";s:2:\"1x\";s:71:\"https://ps.w.org/woo-product-filter/assets/icon-128x128.png?rev=1896877\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/woo-product-filter/assets/banner-1544x500.png?rev=1896877\";s:2:\"1x\";s:73:\"https://ps.w.org/woo-product-filter/assets/banner-772x250.png?rev=1896877\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.4.0\";s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";b:0;}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:6:\"5.10.2\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"5.8\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/advanced-custom-fields-font-awesome\";s:4:\"slug\";s:35:\"advanced-custom-fields-font-awesome\";s:6:\"plugin\";s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";s:11:\"new_version\";s:5:\"3.1.2\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/advanced-custom-fields-font-awesome/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/advanced-custom-fields-font-awesome.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/advanced-custom-fields-font-awesome/assets/icon-256x256.jpg?rev=1016227\";s:2:\"1x\";s:88:\"https://ps.w.org/advanced-custom-fields-font-awesome/assets/icon-128x128.jpg?rev=1016227\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/advanced-custom-fields-font-awesome/assets/banner-772x250.jpg?rev=859936\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:27:\"buy-now-woo/buy-now-woo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/buy-now-woo\";s:4:\"slug\";s:11:\"buy-now-woo\";s:6:\"plugin\";s:27:\"buy-now-woo/buy-now-woo.php\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/buy-now-woo/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/buy-now-woo.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/buy-now-woo/assets/icon-256x256.png?rev=2297863\";s:2:\"1x\";s:64:\"https://ps.w.org/buy-now-woo/assets/icon-256x256.png?rev=2297863\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/buy-now-woo/assets/banner-772x250.png?rev=2297878\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:54:\"contact-form-7-mailchimp-extension/chimpmatic-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/contact-form-7-mailchimp-extension\";s:4:\"slug\";s:34:\"contact-form-7-mailchimp-extension\";s:6:\"plugin\";s:54:\"contact-form-7-mailchimp-extension/chimpmatic-lite.php\";s:11:\"new_version\";s:6:\"0.5.49\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/contact-form-7-mailchimp-extension/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/contact-form-7-mailchimp-extension.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/icon-256x256.png?rev=1072113\";s:2:\"1x\";s:87:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/icon-128x128.png?rev=1072113\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/banner-1544x500.png?rev=1072092\";s:2:\"1x\";s:89:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/banner-772x250.png?rev=1625715\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.4.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a: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:8:\"requires\";s:3:\"4.6\";}s:47:\"one-click-demo-import/one-click-demo-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/one-click-demo-import\";s:4:\"slug\";s:21:\"one-click-demo-import\";s:6:\"plugin\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/one-click-demo-import/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/one-click-demo-import.3.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=2506685\";s:2:\"1x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=2506685\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=2506685\";s:2:\"1x\";s:76:\"https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=2506685\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:6:\"2.3.19\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/svg-support.2.3.19.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:64:\"https://ps.w.org/svg-support/assets/icon-256x256.png?rev=1417738\";s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}}s:7:\"checked\";a:17:{s:56:\"advanced-custom-fields-font-awesome/acf-font-awesome.php\";s:5:\"3.1.2\";s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.9.9\";s:19:\"akismet/akismet.php\";s:6:\"4.1.11\";s:27:\"buy-now-woo/buy-now-woo.php\";s:5:\"1.0.0\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.4.2\";s:54:\"contact-form-7-mailchimp-extension/chimpmatic-lite.php\";s:6:\"0.5.49\";s:32:\"duplicate-page/duplicatepage.php\";s:5:\"4.4.5\";s:23:\"elementor/elementor.php\";s:5:\"3.4.3\";s:9:\"hello.php\";s:5:\"1.7.2\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:5:\"3.0.2\";s:35:\"redux-framework/redux-framework.php\";s:6:\"4.2.14\";s:35:\"shadepro-helper/shadepro-helper.php\";s:5:\"3.3.0\";s:23:\"revslider/revslider.php\";s:5:\"6.5.8\";s:27:\"svg-support/svg-support.php\";s:6:\"2.3.19\";s:27:\"woocommerce/woocommerce.php\";s:5:\"5.6.0\";s:41:\"woo-product-filter/woo-product-filter.php\";s:5:\"1.5.8\";s:26:\"wp-rocketzip/wp-rocket.php\";s:5:\"3.9.2\";}}','no'),(1551,'_transient_timeout_wc_shipping_method_count_legacy','1637280021','no'),(1552,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1631201873\";s:5:\"value\";i:0;}','no'),(1553,'_site_transient_timeout_community-events-2fab68f8ca993f5ddcd2a9c9e72e41a2','1634731221','no'),(1554,'_site_transient_community-events-2fab68f8ca993f5ddcd2a9c9e72e41a2','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"67.183.57.0\";}s:6:\"events\";a:6:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:27:\"WordCamp Italia Online 2021\";s:3:\"url\";s:33:\"https://italia.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-10-22 14:00:00\";s:8:\"end_date\";s:19:\"2021-10-23 00:00:00\";s:20:\"start_unix_timestamp\";i:1634904000;s:18:\"end_unix_timestamp\";i:1634940000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"IT\";s:8:\"latitude\";d:41.8725553000000019210347090847790241241455078125;s:9:\"longitude\";d:12.516448000000000462250682176090776920318603515625;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:26:\"WordPress Help Desk Meetup\";s:3:\"url\";s:67:\"https://www.meetup.com/SeattleWordPressMeetup/events/sjblsryccnbzb/\";s:6:\"meetup\";s:24:\"Seattle WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/SeattleWordPressMeetup/\";s:4:\"date\";s:19:\"2021-10-19 18:30:00\";s:8:\"end_date\";s:19:\"2021-10-19 20:30:00\";s:20:\"start_unix_timestamp\";i:1634693400;s:18:\"end_unix_timestamp\";i:1634700600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.580001831055000138803734444081783294677734375;s:9:\"longitude\";d:-122.4000015258800004858130705542862415313720703125;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:48:\"Online Event: DIY User Group for Bloggers & More\";s:3:\"url\";s:67:\"https://www.meetup.com/SeattleWordPressMeetup/events/rxqslsyccnbfc/\";s:6:\"meetup\";s:24:\"Seattle WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/SeattleWordPressMeetup/\";s:4:\"date\";s:19:\"2021-10-23 10:00:00\";s:8:\"end_date\";s:19:\"2021-10-23 12:00:00\";s:20:\"start_unix_timestamp\";i:1635008400;s:18:\"end_unix_timestamp\";i:1635015600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.580001831055000138803734444081783294677734375;s:9:\"longitude\";d:-122.4000015258800004858130705542862415313720703125;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"WP Freelancers Meetup\";s:3:\"url\";s:67:\"https://www.meetup.com/SeattleWordPressMeetup/events/jjtpbsyccpbgb/\";s:6:\"meetup\";s:24:\"Seattle WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/SeattleWordPressMeetup/\";s:4:\"date\";s:19:\"2021-11-04 10:00:00\";s:8:\"end_date\";s:19:\"2021-11-04 12:00:00\";s:20:\"start_unix_timestamp\";i:1636045200;s:18:\"end_unix_timestamp\";i:1636052400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.580001831055000138803734444081783294677734375;s:9:\"longitude\";d:-122.4000015258800004858130705542862415313720703125;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:37:\"WordPress Developer Meetup: Topic TBD\";s:3:\"url\";s:67:\"https://www.meetup.com/SeattleWordPressMeetup/events/mjtgpsyccpbnb/\";s:6:\"meetup\";s:24:\"Seattle WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/SeattleWordPressMeetup/\";s:4:\"date\";s:19:\"2021-11-10 18:00:00\";s:8:\"end_date\";s:19:\"2021-11-10 20:00:00\";s:20:\"start_unix_timestamp\";i:1636596000;s:18:\"end_unix_timestamp\";i:1636603200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.580001831055000138803734444081783294677734375;s:9:\"longitude\";d:-122.4000015258800004858130705542862415313720703125;}}i:5;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:28:\"WordPress Helpdesk & Hacking\";s:3:\"url\";s:73:\"https://www.meetup.com/South-Sound-WordPress-Meetup/events/zhwffsyccpbrb/\";s:6:\"meetup\";s:28:\"South Sound WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/South-Sound-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-11-13 10:00:00\";s:8:\"end_date\";s:19:\"2021-11-13 12:00:00\";s:20:\"start_unix_timestamp\";i:1636826400;s:18:\"end_unix_timestamp\";i:1636833600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.2900009155270026894868351519107818603515625;s:9:\"longitude\";d:-122.6200027465799990977757261134684085845947265625;}}}}','no'),(1555,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1634731221','no'),(1556,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:79:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Oct 2021 21:47:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.9-alpha-51919\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:20:{i:0;a:6:{s:4:\"data\";s:55:\"\n		\n		\n		\n		\n		\n				\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WP Briefing: Episode 18: The Economics of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2021/10/episode-18-the-economics-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Oct 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11351\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"In episode 18 of WP Briefing, Josepha Haden Chomphosy reflects on a recent lecture that she gave to students at Hendrix College in which she explored the economics of WordPress and the principles that sustain the project&#8217;s ecosystem. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/10/WP-Briefing-018.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:20806:\"\n<p>In episode 18 of WP Briefing, Josepha Haden Chomphosy reflects on a recent lecture that she gave to students at Hendrix College in which she explored the economics of WordPress and the principles that sustain the project&#8217;s ecosystem.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References </h2>\n\n\n\n<p><a href=\"https://wordpress.org/showcase/\">WordPress Showcase</a></p>\n\n\n\n<p><a href=\"https://wpengine.com/resources/value-of-wordpress-worlds-first-study-of-wordpress-economy/#An_Expansive_WordPress_Ecosystem\">The Value of WordPress: The World&#8217;s First Study of the WordPress Economy </a></p>\n\n\n\n<p><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\">WordPress 5.9 Feature Go/No-Go </a></p>\n\n\n\n<h3>Digital Citizenship Resources</h3>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\">Becoming Better Digital Citizens Through Open Source</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\" data-type=\"post\" data-id=\"7413\">Empowering Generations of Digital Natives</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\" data-type=\"post\" data-id=\"7386\">Responsible Participation in Online Communities</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11351\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:11</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Joseph Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>So today marks the start of Digital Citizenship week. This year in 2021, it is the week of October 18th, and to kick it off, I want to share with you a bit of a lecture that I gave to a college class last week.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:55</p>\n\n\n\n<p>An economics professor teaches this class. And so, a little bit, I went to talk about how WordPress is essentially a microcosm of global societies. That was mostly why I was invited to come and give the talk. But one of the students asked a really interesting question about economics, and especially the economics of WordPress. And so, I&#8217;m going to take some time to do my best to answer that question here as well. But first, we&#8217;re going to start with some big picture information about WordPress that I shared with the students, and then maybe you also don&#8217;t necessarily know.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:00</p>\n\n\n\n<p>So the first place that we started was with the question of what WordPress is. Most of them had heard of it but didn&#8217;t necessarily have a good handle on what it is. And so this is the definition that I gave to them. This is a bit of each of the facets of WordPress that we kind of see right now.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:57</p>\n\n\n\n<p>Firstly, WordPress is, of course, a content management system, which means it&#8217;s a piece of software that uses a copyleft license, which means that it&#8217;s open source, and no one individual necessarily owns the rights to the code. If you get very specific, WordPress is, of course, a FOSS project or a free and open source software project. I know that there are discussions around when a piece of software is free, then what are you using to pay for that piece of software or to pay for your access to that software? And often, the answer is that you&#8217;re using your personally identifying information to pay for something commonly referred to as the data economy. If you&#8217;re not familiar with that, it&#8217;s a little bit of a three-pronged effort there. So you submit your data to get access to the software, or you can join the platform, depending on what it is that you&#8217;re working with. That platform or that software collects your data so that they can build a profile about what sorts of content engages you and so that they can share, essentially, audience cohorts like groups of people that kind of are talking about what you&#8217;re talking about, agree with what you agree about, and find interesting, the same sorts of things that you find interesting. And then those companies sell access to your attention. This is something that I refer to as the attention economy. I think there are a lot of startups at the moment that refers to the attention economy. The most iconic recent example was when the folks over at Netflix said that they weren&#8217;t competing against other streaming services; they were competing against sleep.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:54</p>\n\n\n\n<p>And I think that might ring true for quite a few of us at the moment. But anyway, to scoot us back one level, I had, as I said, WordPress is free software. But the difference with WordPress is that to get a copy of WordPress, you are not necessarily required to hand over any data. You don&#8217;t need to give anyone data to get a copy. You don&#8217;t need to give anyone money or data to open up a copy that you own or to build a website in it if you&#8217;re just doing it locally, but especially around that data side because WordPress is not collecting any data, we&#8217;re also not brokering access to anyone&#8217;s attention.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:37</p>\n\n\n\n<p>Another answer to the question of &#8220;What is WordPress?&#8221; WordPress software and the project enable nearly half a trillion dollars of revenue in the global digital economy, as we learned from a recent study from one of the hosting companies inside the WordPress project&nbsp; &#8211; oh, Inside the WordPress ecosystem anyway. And WordPress also runs 42% of the web, with some of the biggest sites we know using WordPress. Such sites like the New York Times, Rolling Stone, many, many others, which you can see in the WordPress showcase as well. I don&#8217;t necessarily want to just like call out all the big groups that use it. But it&#8217;s a lot.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:22</p>\n\n\n\n<p>&nbsp;To recap what we just learned about WordPress and what WordPress is. It is software that one uses a copyleft license, meaning no single entity owns it. Two, it is available at no cost, meaning no money changes hands for you to own a copy. Three does not track you, which means that you don&#8217;t have to give WordPress any personally identifying information to get a copy. Four is an enabler of a massive digital economy massive portion of the digital economy even. That, you know, means their services, extensions, themes, plugins, all of that stuff. And five, it is software that supports 42% of the web. Practically every other site you visit uses the software. So that&#8217;s WordPress.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:10</p>\n\n\n\n<p>With this massive free software, you might be thinking to yourself a couple of things. The first thing you might be thinking is, &#8220;Well, that sounds impossible.&#8221; But if that&#8217;s not what you&#8217;re thinking, you may be thinking, &#8220;how is it possible that a software that is technically owned by no one and takes no money or data to obtain &#8211;&nbsp; how is it that a software like that can power 42% of the web.&#8221; This brings me, of course, to a topic that I specialize in, which is how WordPress is made.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:45</p>\n\n\n\n<p>WordPress is, by now you know, built by a global community of contributors. And it&#8217;s partially contributors that are self-sponsored or giving of their own time freely, and partly sponsored volunteers, people who are paid by Five for the Future initiatives inside various companies. I have said many times, most recently at WordCamp US, that I have an ideal ratio of about two to one in that kind of volunteer or self-sponsored versus corporately sponsored set of voices. And also, as I said, at WordCamp US, we’re not necessarily getting to that ideal ratio right now because of the nature of the way the world is at the moment. However, this community functions almost like a tiny little digital society. There are ways to get your voice heard ways to take on leadership roles; there is a little bit of light governmental structure. And as with any society, any community like this, there&#8217;s a relationship inherent there. There&#8217;s almost a transactional element that takes place when you&#8217;re participating fully. Although I know that for the WordPress project, especially for open source in general, there is a reminder that we should always be contributing without the expectation of reciprocity. But even if you are contributing without the expectation of reciprocity, you still are engaging in an existing community, which means that you are fostering a relationship with the community or with the people who are also participating in the community with you. It&#8217;s just inescapable if you have people around and working together.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:38</p>\n\n\n\n<p>So two concepts really informed my work to future-proof the WordPress project. And the first one is digital citizenship, which is why this particular WordPress Briefing fits today. And the other is the Tragedy of the Commons, especially how we go about refreshing those commons. So digital citizenship, I talked about it a bit in the last WP Briefing. But it&#8217;s still true today that that&#8217;s important. And the thing that really matters to me as we are working through how to make sure that WordPress is moving forward together. But most discussions of citizenship are location-specific, which makes plenty of sense. However, with so many mobile devices and broader access to some level of internet, we have increasing opportunities to be connected because of interests or skill sets. And even the things that we aspire to or aspire to be with a community like WordPress, which has no home office or main location. Of course, it&#8217;s very important that all of the leaders in WordPress, all of the team reps in WordPress, are proactively engaging with the people in their teams and in their portions of the community instead of waiting for like happenstance running into people. We also use a bunch of social stuff to get people together: twitch screams, not twitch screams because it&#8217;s not that Halloweeny! Twitch streams, hallway hangouts, events that are both online and off. Everything that the Learn section of the community is doing with their discussion groups. There are so many ways that WordPress proactively engages with each other and engages with itself. And that work is all really important to keeping the community involved, which is key to any organization&#8217;s long-term success, and certainly is true for WordPress as long-term success. Because when your community or your organization or your society is engaged and invested in your collective success, then you are (get ready for a list) one, more likely to see obstacles early and be able to overcome them, two more likely to see upcoming trends and prepare for them, three more likely to see what is broken and be able to repair it before it is a major issue. And four, you are more likely to be a resilient and fruitful organization long after any single member has stopped participating.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:10</p>\n\n\n\n<p>The more connected to the community you are and the more active, the greater your influence and the ability to affect changes also become. And so, not only is it important for us to remain connected as a community just to make sure that everything is going well. But also, it&#8217;s one of the primary ways that people who are giving back can sort of have more of an opportunity in this particular ecosystem. In open source, anyone can gain influence by helping others by helping the software and by keeping the trains on the tracks. And so, one of the only lasting limits to long-term potential in an open source project is how good you are at seeing beyond yourself and seeing what good action can make beyond just your own benefits. I understand that there are also specific hurdles to contribution in your free time that I have dedicated a couple of different podcasts to, so I don&#8217;t want to neglect that reality.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:19</p>\n\n\n\n<p>I have found in my experience that one of the limiting factors that sometimes cannot be unlearned is not being able to see kind of a broader scope, a broader perspective than what you&#8217;re already bringing into it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:34</p>\n\n\n\n<p>So being a good digital citizen, that&#8217;s a really important part of keeping any society together any organization together and moving forward. But especially is in the context of digital citizenship, is true for WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:48</p>\n\n\n\n<p>The second thing that is really important to me is this concept of the Tragedy of the Commons, which is, of course, an economics term, open source has borrowed. We have talked about it in this podcast in the past. And today, I specifically am talking about how WordPress works to consistently be refreshing the commons. So the theory of the Tragedy of the Commons says that all societies can withstand a certain volume of free-riders. A certain number of people who reap the benefits of that community’s society without necessarily putting anything back into it. And that is no different in open source than in any other place where you would apply this concept. The particular catch for WordPress is of course, that it is free, freely available and has no specific copyright holder. And so in those circumstances, it is incredibly easy for a small group of people to maintain the software while the whole world uses it for free. And not only is it possible for a small group of people to maintain it, but if you&#8217;re not careful, it&#8217;s also easy for a small group of unpaid people and unacknowledged people to maintain something forever. And at the volume that WordPress operates at, that&#8217;s a really risky choice. It doesn&#8217;t help to support those people; it puts the long-term stability of the software in jeopardy. And at the end of the day, it just does not help to replenish the commons to make sure that everybody keeps getting to have the benefits of this ecosystem in the long term.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:39</p>\n\n\n\n<p>As many of you know, there is this program called Five for the Future. And that program is essentially modeled after a tithe. So the invitation to this program when it was first introduced in 2014 was that if you or your company or your community is made better or made possible by WordPress, you should give back to the WordPress project 5% of your resources.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:07</p>\n\n\n\n<p>It is an aspirational 5%, of course, and some groups give back their time while others give back with their money. But almost anyone who wants to give back has some skill that WordPress needs. That particular program has really grown in leaps and bounds since it was introduced. I don&#8217;t know exactly how many team members were considered Five for the Future contributors when it was first introduced in 2014; it was a little before my time. But at the moment, it&#8217;s about 150 people that I am routinely aware of or in contact with, which is still a small number considering how many people use WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:52</p>\n\n\n\n<p>However, many corporations who have seen the most benefit, including, you know, the company that I work for (Automattic), and a lot of other hosting companies in the ecosystem, all do a really good job of refreshing the commons so that WordPress is still usable for businesses of all levels.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:11</p>\n\n\n\n<p>I want to leave us with one final big picture thought about open source. This is going to be a callback to one of my earliest episodes in this podcast. But I think that it&#8217;s always worth remembering. We&#8217;re going to talk about this really popular phrase in open source projects &#8220;free as in speech, not free as in beer.&#8221; And for WordPress, as you know, it&#8217;s a little bit of both. It&#8217;s literally free. But also, since it&#8217;s open source, it has a free as in speech component to it as well.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:46</p>\n\n\n\n<p>The four freedoms of open source as laid out in the 90s. So 10 years into the open source movement, are basically that you have the freedom to run the program for any purpose, the freedom to study how the program works, and change it so that it can do your computing as you wish, the freedom to redistribute copies so that you can help your neighbor and the freedom to distribute copies of your modified versions, giving the community a chance to learn and benefit from the changes that you put into the software.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:22</p>\n\n\n\n<p>I don&#8217;t remember if I said this in my original podcast, but I&#8217;m going to say it today, free speech has a lot of responsibility, just like being a part of a community. Governments or communities, or in our case, this software is built by the people who show up. For WordPress at 42% of the web, every small choice we make can cause huge changes in how people experience the web today and tomorrow. And that, to my mind, is really no different than participating in any sort of civic infrastructure. The changes that are made today, or the errors that we prevent, set the tone and the circumstance and the potential to thrive for everyone who comes after us.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:17</p>\n\n\n\n<p>That leads us into our smallest of big things. I just have a couple of things for you all today. Firstly, at the time of this recording, this is prior to the Go/No-Go demo meeting for WordPress 5.9. So I have no idea what&#8217;s happened. But by the time this podcast has been released, we will have had the Go/No-Go meeting and also have shipped the post that summarizes what happened, what we hope to change in the next essentially sprint so that we can confidently move forward with a clear set of features for the 5.9 release. I will include a link to the notes below in the show notes. Kudos to everyone, props to everyone who participated in that meeting. And also props to all the people who have been helping us as we head into this final release of the year and all of you who are going to help us make it successfully to the end.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:15</p>\n\n\n\n<p>The second thing I already kind of alluded to at the top of the podcast, it is Digital Citizenship week; two or three years ago, the WordPress blog had a series about digital citizenship and what it means to be a good digital citizen, what it means to do that in the context of WordPress. I will drop a link to those posts in the show notes as well. They are very well written and very important, and fairly evergreen content. If I think that there is something worth updating, I will update it before putting it in the show notes. And that is your small list of big things.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:57</p>\n\n\n\n<p>Thank you all for tuning in today for the WordPress sprint. I&#8217;m your host, Joseph Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11351\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"The Month in WordPress: September 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2021/10/the-month-in-wordpress-september-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Oct 2021 20:01:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11327\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"There’s a lot of tolerance in open source software for shipping slightly imperfect work. And that’s good. When we ship software that’s a little bit imperfect, it makes it clear how everyone can participate, how everyone could participate, if they could find this WordPress community that supports the CMS. That was Josepha Haden on the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16575:\"\n<blockquote class=\"wp-block-quote\"><p>There’s a lot of tolerance in open source software for shipping slightly imperfect work. And that’s good. When we ship software that’s a little bit imperfect, it makes it clear how everyone can participate, how everyone could participate, if they could find this WordPress community that supports the CMS.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> on the “<a href=\"https://wordpress.org/news/2021/09/episode-16-a-sneak-peek-at-wordpress-5-9/\">A Sneak Peek at WordPress 5.9</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, talking about what goes into a WordPress release like version 5.9. Read on to find out more about updates on the latest release and the latest WordPress news from September 2021.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress Translation Day 2021 Celebrations ran for 30 days</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"332\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=632%2C332&#038;ssl=1\" alt=\"WP Translation Day Matt Mullenweg Quote. Quote text: “Translation is so magical because it multiplies the work of all the other contributors of WordPress. If you care about freedom and the future of the internet, translating WordPress is one of the best things you can do for people who speak your language.”\" class=\"wp-image-11328\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=1024%2C538&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=300%2C158&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=768%2C403&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>WordPress Contributor teams, led by the Polyglots and Marketing teams, organized <a href=\"https://wptranslationday.org/\">WordPress Translation Day celebrations</a> for the entire month of September. Contributors from across the world joined the celebrations by translating WordPress into their own languages. Additionally, the team organized a host of <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">global</a> and <a href=\"https://wptranslationday.org/wptd-2021/local-events/\">local events</a>. Translation sprints were organized by the <a href=\"https://make.wordpress.org/community/2021/09/20/kicking-off-the-community-documentation-translation-sprint-from-september-20-to-24/\">Community</a> and <a href=\"https://make.wordpress.org/training/2021/09/30/wptranslationday-subtitling-videos-on-learn/\">Training</a> teams, as well as local groups.</p>\n\n\n\n<p>As part of the celebrations, nominations were invited for contributors who had made a significant impact on the translation of WordPress and its availability in so many languages worldwide. <a href=\"https://wptranslationday.org/blog/call-for-nominations-polyglots-appreciation/\">More than 30 notable polyglot contributors were nominated for their contributions</a>. They will be featured in the coming month on the <a href=\"https://wptranslationday.org/\">WP Translation Day website, together with event recaps and more news.</a></p>\n\n\n\n<p>Read the latest <a href=\"https://wordpress.org/news/2021/09/people-of-wordpress-yordan-soares/\">People of WordPress feature on polyglots contributor Yordan Soares</a>, from South America.</p>\n\n\n\n<h2>WordPress Release updates</h2>\n\n\n\n<ul><li>WordPress security and maintenance release – <a href=\"https://wordpress.org/news/2021/09/wordpress-5-8-1-security-and-maintenance-release/\">Version 5.8.1</a> came out on September 9, 2021. The release fixes three major issues and includes 60 bug fixes. You can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org. The <a href=\"https://make.wordpress.org/core/2021/10/04/wordpress-5-8-2-deferred/\">5.8.2 release has been deferred</a> and if needed a minor release will be added before 5.9.&nbsp;</li><li>Work is progressing towards WordPress 5.9, and the team released a <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">planning round-up</a> along with a <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">call for release leads</a>. October 14 is the go/no-go date of the release, which is planned to be <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">launched on December 14, 2021</a>.</li></ul>\n\n\n\n<p>Want to contribute to WordPress core? Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Don’t miss the Core Team chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Say hi to Gutenberg Versions 11.4 and 11.5</h2>\n\n\n\n<p>We launched Gutenberg <a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">version 11.4</a> and <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">version 11.5</a> this month. <a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">Version 11.4</a> adds image blocks to the gallery block, duotone filters for featured images, and padding support for Button Blocks. <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">Version 11.5</a> adds flex layout support to the group and social icon blocks along with <a href=\"https://make.wordpress.org/core/2021/09/22/core-editor-improvement-introducing-the-widget-group-block/\">widget group blocks</a>. It will support the addition of a site logo or title directly into menus.</p>\n\n\n\n<p>Want to get involved in developing Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The <a href=\"https://make.wordpress.org/core/2021/09/17/whats-next-in-gutenberg-mid-september-2021/\">What’s next in Gutenberg</a> post gives details on the latest updates.</p>\n\n\n\n<h2>New Guidelines for in-person WordCamps</h2>\n\n\n\n<p>The Community Team <a href=\"https://make.wordpress.org/community/2021/09/13/announcement-updated-guidelines-for-in-person-wordcamps/\">published new guidelines</a> for returning to in-person WordCamps in regions where in-person events are allowed by the local public health authorities.&nbsp;</p>\n\n\n\n<p>Community members can now organize in-person WordCamps for fully vaccinated, recently tested negative, or recently recovered folks (in the last three months) — provided their region passes the in-person <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\">safety checklist</a> OR if vaccines and/or COVID testing are accessible to all. Organizers can continue to plan online WordCamps if their region does not meet the guideline.&nbsp;</p>\n\n\n\n<p>New guidelines are also available on the <a href=\"https://make.wordpress.org/community/2021/09/27/announcement-returning-to-in-person-do_action-charity-hackathons/\">return of in-person do_action hackathons</a>.</p>\n\n\n\n<p>Want to get involved in the Community Team and help bring back in-person WordPress events? <a href=\"https://make.wordpress.org/community/\">Follow the Community Team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RQC7RN\">#community-events</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Make WordPress Slack</a>! Check out the following <a href=\"https://central.wordcamp.org/\">upcoming WordCamps</a> and <a href=\"https://make.wordpress.org/community/events/\">meetups</a>.</p>\n\n\n\n<h2>Important Team announcements/updates</h2>\n\n\n\n<ul><li>The Polyglots Team <a href=\"https://make.wordpress.org/polyglots/2021/09/27/sign-up-for-the-new-polyglots-monthly-newsletter/\">opened sign-ups</a> for their new monthly newsletter. The first edition goes out on October 15!</li><li>The<a href=\"https://make.wordpress.org/project/2021/09/10/suggested-iterations-for-the-five-for-the-future-program-and-tool/\"> Five for the Future program is being revisited</a> to identify opportunities for growth.&nbsp;</li><li>The Docs Team formally <a href=\"https://make.wordpress.org/docs/2021/09/15/announcement-new-workflow-for-reporting-documentation-issues/\">launched a new repository</a> for tracking issues with WordPress documentation: <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker\">https://github.com/WordPress/Documentation-Issue-Tracker</a></li><li>The Plugins Team <a href=\"https://make.wordpress.org/plugins/2021/09/20/change-to-how-long-active-reviews-remain-open/\">reduced the time period to complete active review requests for plugins</a> from six to three months.</li><li>The Community Team started work on the <a href=\"https://make.wordpress.org/community/2021/09/10/2022-global-sponsorship-working-group/\">2022 Global Sponsorship program</a>.</li><li>The Design Team is <a href=\"https://make.wordpress.org/design/2021/09/16/document-status-and-visibility/\">working on a redesign proposal of the Inspector sidebar</a> in the WordPress post/page editor.</li><li>The Themes Team announced the results of the <a href=\"https://make.wordpress.org/themes/2021/09/13/theme-upload-survey-results-next-steps/\">six-week Theme author survey</a>.</li><li>The Training Team also shared <a href=\"https://make.wordpress.org/training/2021/09/14/learn-wordpress-needs-assessment-results/\">results of a third-party needs assessment exercise for Learn WordPress</a> which offers some excellent insights.&nbsp;</li></ul>\n\n\n\n<h2>Feedback/Testing requests from Contributor Teams</h2>\n\n\n\n<ul><li>Version 18.3 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/09/20/call-for-testing-wordpress-for-ios-18-3/\">iOS</a> and <a href=\"https://make.wordpress.org/mobile/2021/09/21/call-for-testing-wordpress-for-android-18-3/\">Android</a> are now available for testing!</li><li>Join the <a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">10th challenge</a> of the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing (FSE) Outreach program</a> &#8211; “<a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">Pattern Party</a>”. Check out the <a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">announcement post</a> for testing instructions and join the fun in the <a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">#fse-outreach-experiment</a> Slack channel. Deadline: October 13, 2021</li><li>The Training Team is requesting feedback on:<ul><li><a href=\"https://make.wordpress.org/training/2021/09/27/proposal-ensuring-high-quality-video-contributions-to-learn-wordpress/\">Strategies to ensure high-quality video contributions for Learn WordPress</a>. Deadline: October 6, 2021</li><li><a href=\"https://make.wordpress.org/training/2021/08/10/proposal-learner-achievements-on-profiles/\">Learner achievements on profiles</a>: no current deadline</li></ul></li><li>Help the Test Team <a href=\"https://make.wordpress.org/test/2021/10/01/test-team-chat-summary-28-september-2021/\">reach out to extenders to check if their test suites are compatible with the modernization of the WordPress Core PHP Test Suites</a>. Information on what the changes mean and step-by-step instructions are available over in the following post: <a href=\"https://make.wordpress.org/core/2021/09/27/changes-to-the-wordpress-core-php-test-suite/\">Changes to the WordPress Core PHP Test Suite</a>.</li><li>The Polyglots Team is <a href=\"https://make.wordpress.org/polyglots/2021/09/19/how-to-handle-block-pattern-translations/\">exploring two different mechanisms on translating user-submitted block patterns</a>: GlotPress v/s forking patterns to locales and is requesting feedback from community members.</li></ul>\n\n\n\n<h2>WordPress Events updates</h2>\n\n\n\n<ul><li><a href=\"https://galicia.wordcamp.org/2021/\">WordCamp Galicia 2021</a> was held from September 30 &#8211; October 2, 2021 and <a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a> ran on October 1.</li><li>Don’t miss these upcoming WordCamps: <a href=\"https://nicaragua.wordcamp.org/2021/\">WordCamp Nicaragua 2021</a> (October 8-9, 2021) and <a href=\"https://italia.wordcamp.org/2021/\">WordCamp Italia 2021</a> (October 22-23, 2021) </li><li>The Diverse Speakers Training group (<a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">#WPDiversity</a>) of the Community Team organized an <a href=\"https://make.wordpress.org/community/2021/09/15/wpdiversity-events-in-september-attention-india/\">allyship workshop, along with dedicated workshops focused on India in September</a>.</li><li>The Test Team organized a <a href=\"https://make.wordpress.org/test/2021/09/17/hallway-hangout-discussion-on-adoption-pathways-for-full-site-editing-16-september/\">Hallway Hangout on adoption pathways for Full Site Editing</a> where attendees mentioned how they use FSE and shared ideas for improvement. </li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further reading</h2>\n\n\n\n<ul><li>The Hosting Team recommended that all web hosts <a href=\"https://make.wordpress.org/hosting/2021/09/15/wordpress-5-8-1-security-release-is-time-sensitive/\">test and push the WordPress 5.8.1 security update through to their users</a> as soon as possible.</li><li>The Training Team <a href=\"https://make.wordpress.org/training/2021/09/21/should-learn-wordpress-contributors-be-gpl-compliant/\">clarified GPL compliance guidelines</a> for Learn WordPress contributions, and the <a href=\"https://learn.wordpress.org/meta/handbook/workshops/eligibility-of-workshop-presenters/\">guidelines for workshop presenters are available in the handbook</a>.</li><li>The codebase for Openverse, a search engine for openly-licensed media,&nbsp; i<a href=\"https://make.wordpress.org/openverse/2021/09/03/call-for-translations-i18n-in-openverse/\">s now available for translation</a>.</li><li>The Core Team implemented a <a href=\"https://make.wordpress.org/core/2021/09/28/implementing-a-webfonts-api-in-wordpress-core/\">Webfonts API in WordPress core</a> for simplifying the process of enqueuing external fonts on WordPress sites.&nbsp;</li><li>The Test Team rescheduled <a href=\"https://make.wordpress.org/test/2021/09/23/5-9-end-to-end-e2e-working-strategy-session-agenda-for-29-sep-2021/\">the End-to-End (e2e) Test working strategy session</a> to October 6. More details <a href=\"https://make.wordpress.org/test/2021/09/23/5-9-end-to-end-e2e-working-strategy-session-agenda-for-29-sep-2021/\">in the announcement post</a>.</li></ul>\n\n\n\n<p><em>Have a story that we could include in the next ‘Month in WordPress’ post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.&nbsp;</em></p>\n\n\n\n<p><em>The following folks contributed to September’s Month in WordPress: <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, and <a href=\'https://profiles.wordpress.org/tobifjellner/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tobifjellner</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:55:\"\n		\n		\n		\n		\n		\n				\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WP Briefing: Episode 17: WordPressing Your Way to Digital Literacy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2021/10/episode-17-wordpressing-your-way-to-digital-literacy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Oct 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11316\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:400:\"In episode 17 of the WordPress Briefing, Josepha Haden Chomphosy reflects on her WordCamp US keynote and digs into how participating in open source projects can help you learn 21st Century Skills.&#160; Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/09/WP-Briefing-017.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:29421:\"\n<p>In episode 17 of the WordPress Briefing, Josepha Haden Chomphosy reflects on her WordCamp US keynote and digs into how participating in open source projects can help you learn 21st Century Skills.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References </h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">WordPress 5.9 Planning</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">5.9 Target Features</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11316\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. See, here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:42</p>\n\n\n\n<p>Today I want to talk to you a little bit about the digital divide, where it is, maybe a bit of where it&#8217;s headed, and which parts of the WordPress open source project and CMS can help. This is a focused look, though, so I won&#8217;t touch on some of the hurdles that everyone is aware of when you get outside of in-person environments, things like parental modeling or supervision, education on the relevance of technology, etc. This is a follow-up to the conversation that I had at WordCamp US last week—and so doing a little bit of a deeper dive here. And we&#8217;re gonna start with what exactly is the digital divide.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:23</p>\n\n\n\n<p>So the digital divide is considered those who benefit from the digital age versus those who don&#8217;t; that feels like a really big concept. And the current discussion is primarily about access, or for years that has been about access anyway, especially physical access. So those who have computers versus those who do not have internet in their homes versus those who do not. But I don&#8217;t necessarily agree with that particular, really focused definition of the problem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:59</p>\n\n\n\n<p>If the only problem we see is access, then the solution becomes to get cheap devices and internet to everyone, which certainly has led to more people being connected than ever before.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:12</p>\n\n\n\n<p>With this proliferation of devices that are considered both smart and mobile (mobile in this context, meaning handheld or pocket-sized), the discussion over the last few years has been shifting. It’s been shifting into more of a discussion around the education around the relevance of internet access, discussions around the quality of access to the Internet, and also discussions around Wi-Fi and dial-up and the surprising cost of data.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:42</p>\n\n\n\n<p>But from my perspective, there are a number of really dangerous assumptions that we make when we boil it all the way down to who has access and the quality of that kind of access.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:54</p>\n\n\n\n<p>The first dangerous assumption is that we run the risk of conflating being tech-savvy with being digitally literate, and they&#8217;re not really the same things. The second assumption that we run the risk of is assuming that access to cellular data equals access to the internet through any other means. And also assuming that cost is always the determining factor.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:19</p>\n\n\n\n<p>And the final fairly dangerous assumption that we&#8217;re making there is that we allow ourselves the ability to mark the digital divide is fixed in our minds. Once we get enough access to everyone, we&#8217;re just done. There is no more divide. But as a way of illustration, if you think about access, not in the context of technology, like high technology, digital technology, and in the context of like writing, you probably own a writing utensil, and you probably have access to paper of some sort, which is great. But just because you have like a pencil and a piece of paper doesn&#8217;t mean that I can send you home right now &#8211; I guess most of you are listening at home.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:07</p>\n\n\n\n<p>It doesn&#8217;t mean that I can send you to your desk right now. And consider you prepared to write a best-selling novel, right? Because giving you physical tools no more makes you a novelist than handing me a computer when I was a teen made me digitally literate.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:24</p>\n\n\n\n<p>So let&#8217;s talk about what it takes to be digitally literate. I&#8217;ve lumped the following skills into three groups. It&#8217;s broadly defined as 21st-century skills, but the groups that I have them in is not a comprehensive list of those 21st-century skills.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:41</p>\n\n\n\n<p>The first group that is a large component of digital literacy is critical thinking skills. So computational thinking and problem-solving. That particular one is not new, exactly. But the computational thinking part certainly is. Not all problems are solved with code, but the basis for thinking through things procedurally is increasingly important.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:04</p>\n\n\n\n<p>The second one in that set is communication through multiple media, consuming communications or content through Twitter, Instagram, Snapchat, or any other format, but also creating the things that communicate—writing blogs, creating videos, both calls and standalone, and forums, things like that.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:27</p>\n\n\n\n<p>The third set in that group of critical thinking skills is around collaboration, which some people will say is more about communication. But I find that collaboration both online and in-person is a skill set all to its own. Communication only gets you so far when you&#8217;re learning to cook to collaborate with people that you don&#8217;t normally work with. And so, I have lumped that into critical thinking skills.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:54</p>\n\n\n\n<p>The second big bucket for digital literacy is actually literally digital literacy. So I have three, three things in here as well. Evaluating information is obviously incredibly important in the environment that we&#8217;re in right now, for just information’s sake. But then things like understanding the differences between copyright versus copyleft licenses, understanding the difference between an .org ending URL and a .com ending URL, and evaluating the general veracity of sources that you&#8217;re finding on the web.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:32</p>\n\n\n\n<p>The second part of that group is media use and creation, understanding the difference between folks who consume and folks who create the content we have, how to find information online, and the most sensible places to keep information online. And the third area of digital literacy that I find to be vitally important is the ethics of licenses both around use and access. So again, things like copyright vs. Copy, copyleft. And specifically for WordPress, that means understanding things like the Creative Commons licenses, GPL, MIT, but then also copyright is its own complicated question unto itself. But the other things that show up for us for WordPress that show up for us with technology are also things like open access versus proprietary information and sources. And things like plagiarism versus sampling.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:33</p>\n\n\n\n<p>And our third big bucket, which has become increasingly complex, but the third big bucket for digital literacy to my mind is actually considered something that I call life skills. So things like self-direction, knowing what you want to do next, and how to get it done. Time management is also in there, knowing how much time something will take and being able to make sure that you are getting things done over time, as opposed to trying to accomplish everything at the last second.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:03</p>\n\n\n\n<p>A big part of these life skills is cross-cultural and social communication. The internet is tricky, right? Because it&#8217;s simultaneously incredibly insular and increasingly global. Like you can if you wanted only ever read things that already confirm your existing biases. But the very nature of the internet, the very nature of the web, means that the world is much smaller. We have more ready access faster to everyone everywhere in the world than we used to have. This means, of course, that cultural awareness is an absolute must now more than ever. This is for what it&#8217;s worth the time of year when I give this talk. And that&#8217;s because of this last part of the life skills section, which is digital citizenship.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:54</p>\n\n\n\n<p>Digital citizenship generally is the second week of October 2 or the third week of October. And it&#8217;s one of my favorite weeks because it is something that comes up all the time in our ecosystem. It comes up all the time and open source in general, but certainly for WordPress. So those are our three big buckets of digital literacy, a subset of 21st-century skills as a whole.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:22</p>\n\n\n\n<p>That&#8217;s a lot of stuff, I know. And it&#8217;s also really hard to figure out how you can learn any of those skills, and from my experience, I really believe that WordPress as an open source project can help people learn those things.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:43</p>\n\n\n\n<p>Once upon a time, ages and ages ago, my mother told me that in order for me to become a better writer, I would have to read and in order to become a better communicator, it would probably help if I spent a little bit more time writing, and I have always felt that the same must be true for all the things that we learn, you find a positive example and study it to become better. Or, depending on what you&#8217;re learning and how you&#8217;re trying to learn it, you find a passive example of something that you want to be able to do better from an active standpoint and participate in that so that your active production of the other part is better.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:24</p>\n\n\n\n<p>Here are a few parts of the WordPress project and WordPress itself that can help with this.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:31</p>\n\n\n\n<p>So there are first a few really specific teams; if you&#8217;re contributing to a team like Themes, or Plugins, or Core, the three areas of those digital literacy skills that you have an opportunity to learn there. For critical thinking, you&#8217;re going to run into problem-solving and computational thinking. You’re also going to run into distributed collaboration, which was really important as just a concept when I first wrote this talk. And now it is currently really important as a reality because we have a bunch of companies that are going to either remote work or partially distributed or fully distributed. And that&#8217;s the way that WordPress has worked for a pretty long time.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:19</p>\n\n\n\n<p>So I&#8217;ve always felt like it was important because it was important to WordPress, but it&#8217;s also becoming increasingly an important part of just how to exist in the world at the moment. For those three teams, the things that you can really tap into and practice for the life skill section are digital literacy, nope, digital citizenship, self-direction, and time management obviously comes up in any open source project because you are volunteering your time and it is up to you to kind of decide how much you can commit or not various other parts of time management and directing one&#8217;s own project. Now, but you also get the opportunity to test and practice your cross-cultural communication, social communication and learning what it means to collaborate across cultures in that way.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:15</p>\n\n\n\n<p>On the digital literacy side, you also get a little bit of that information evaluation and synthesis for what it&#8217;s worth. And then obviously get to learn more about the ethics of various types of licenses and how use and access relate to those things.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:35</p>\n\n\n\n<p>We also have a team or two; these are not really teams or twos. These are things that you can do that are either solo activities or group activities. One is working or checking out the support forums, and the other is blogging. We’ll start with support forums.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:52</p>\n\n\n\n<p>If you&#8217;re doing this as a group activity, there are a couple of extra things that that you can practice here. But suppose you&#8217;re doing it as a solo, just way to give back to the project sort of thing or way to learn some of these skills sort of thing. In that case, you can get almost all of these digital literacy skills woven into working in the support forums, depending on what&#8217;s happening in the moment and the questions people have brought up. But for critical thinking, obviously, you get some problem solving in there, not as much the computational thinking as the procedural thinking part. But you certainly also get to tap into communication with multiple types of media, collaboration in person and online, depending on whether you&#8217;re doing this as a solo effort or a group effort. And then, of course, research, which I didn&#8217;t really bring up in any of those groupings for digital literacy, is certainly a very important part of it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>13:49</p>\n\n\n\n<p>For the digital literacy grouping of skills related to digital literacy, you get to work on evaluating information and, depending on how complicated an answer might be. You can also get that opportunity to practice synthesizing complex information and research, a digital literacy skill. And then, once people have responded to a topic you&#8217;ve answered, you also get to tap into that life skill section. You get to be you get the opportunity to practice digital citizenship related to synchronous or asynchronous conversation. You also get to see more about how cross-cultural communication and collaboration works and social communication across those various boundaries that naturally show up when we&#8217;re working across cultures that way. And as I mentioned previously, information synthesis, as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:53</p>\n\n\n\n<p>The second one that I have mentioned can be like a solo effort or a group effort, depending on what you do. Blogging, for most people who use WordPress, is probably the most common application of how WordPress can help you do stuff. So I often see it as the most relevant and the most immediately accessible to anyone. But you know, you got to meet people where they are. So, I would strongly believe that this is our best way to help people learn these things.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:30</p>\n\n\n\n<p>So blogging for the critical thinking sorts of things, you have an opportunity to practice communication across mediums. You will probably get an opportunity to practice your research skills, chances are, you&#8217;re going to get the opportunity to practice some problem solving, and honestly, like if you&#8217;re hosting your site, problem-solving is going to come up when using WordPress as soon as you add in plugins and themes, because you sometimes kind of have to figure out what&#8217;s working and what&#8217;s not, and what&#8217;s playing nicely with other things and what&#8217;s not. It&#8217;s possible that with blogging, you&#8217;re also going to have an opportunity to get to practice some distributed collaboration. But that&#8217;s probably going to depend on what you&#8217;re doing with your site as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:30</p>\n\n\n\n<p>Licenses and how they apply to the thing that you&#8217;re using feel a bit different when you are the one who&#8217;s creating. And so learning about how those things work and don&#8217;t work and how they can best suit what you&#8217;re trying to do. Blogging is absolutely an excellent opportunity to dig into that a bit and learn a bit more about that. As far as your life skills go,</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:56</p>\n\n\n\n<p>that&#8217;s where you, again, get to practice some digital citizenship by figuring out who your audiences are and also when you have to communicate with them via the comments or any other way that you have built up a feedback mechanism there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:11</p>\n\n\n\n<p>Self-direction obviously will come into this, maybe time management if you are blogging on, I was gonna say on a paid basis, but that&#8217;s not really I don&#8217;t know, on a project basis, like some of us are students and have to write things based on deadlines. And so, you know, self-direction, potentially time management, always cross-cultural communication, social communication, research, all of these things show up in there.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:41</p>\n\n\n\n<p>And, you know, I really believe in this concept of how blogging and bringing people into maintaining a website can teach you all of these skills. Because when I was younger, I was a bad communicator. And now, I am across the board known for my effective communication and my ability to work across cultures. And so the defining moment, which was like a four-year moment, and so not necessarily a moment, but the thing that really made all the difference was when my mom challenged me to write every single day. She had noted that I was not necessarily great at getting from one point to the next. I wasn&#8217;t necessarily great at building my arguments when I had to explain something to people. And she suggested that writing every day would help me tap into this big thing about communication and working with other people collaboration, all of that. And as an adult on the other side of it. Like, I thought she was super wrong when I was younger, because don&#8217;t we all think our parents are wrong when we&#8217;re younger. But as an adult on the other side of it, not only was that an opportunity for me to literally learn how to communicate better. But it also, when I look at it, gave me access to opportunities to practice all sorts of 21st-century skills and digital literacy skills in an environment that was relatively safe. And so, I am a big proponent of this particular one.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:26</p>\n\n\n\n<p>Another team that helps us tap into and practice a lot of our digital literacy skills is the Documentation team. I recommend that you let this be a supervised activity if you&#8217;re doing this with students because, you know, it&#8217;s a wiki. You can put weird things in there on accident or just inaccurate things. So for critical thinking, the primary skill that you&#8217;re going to be able to practice if you&#8217;re working on documentation is collaboration. You would think that it was also like information synthesis and information evaluation. But for a lot of the work that we&#8217;re doing, the documentation exists. And what we&#8217;re looking at is trying to figure out where it no longer matches what is currently in the CMS, or currently in the project or currently in the team, whatever it is that you&#8217;re working on at that moment. And so, it&#8217;s a strong collaborative effort in the WordPress project. You have to have done the general work to figure out what needs to be changed in the documentation. But a lot of times, you need to figure out who has access to make the changes, what has prevented us from making changes in the past, and things like that. And so I say, collaboration is the only one to learn and critical thinking, but it&#8217;s actually a really big one and can take a fair amount of effort in this particular context.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>20:49</p>\n\n\n\n<p>From the digital literacy aspect, of course, there is evaluating information. But this particular type of information evaluation is a little different for documentation. And this actually is true for the Documentation team, for the Training team, and also for the new Learn team. This question is true for all of them. There is a huge difference between presentation versus application of information. The way you present information for people who already know it and just need confirmation of something or are using it for reference material is really different from when people are looking at a piece of documentation that should be telling them how to accomplish something. And they try to apply it either to their own processes at the moment or apply it to teaching other people. And so evaluating information to make sure that what is presented can be applied, and all of the ways that that very complicated journey with managing information can kind of work or not, depending on how things are going in your section of the open source project at the moment.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>21:59</p>\n\n\n\n<p>The third group of skills that you can really dig into in those teams, again, is digital citizenship, basically, everything is digital citizenship in WordPress because we&#8217;re just people online.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:24</p>\n\n\n\n<p>And this final grouping that we have this final team and group of skills. So the Community team is a substantial and far-ranging team; they have many things that fall into their area of expertise. And so this has traditionally kind of functioned as a linchpin around education and ensuring that that was all relevant for users and attendees of events. The Community team will remain pivotal to so many things that we do now. But now that we have really awakened the Learn team and re-enlivened that Training team, this will shift a little over time. But yes, so that grain of salt that depending on when you listen to this, if you listen to it in 2050, maybe it&#8217;s not accurate anymore. Hopefully, most of what I say is not accurate in 2050. But you know, still.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>23:27</p>\n\n\n\n<p>&nbsp;Anyway! Critical thinking that&#8217;s where we were. So the critical thinking group of skills inside the Community team, you are going to have an opportunity to practice problem-solving. And frequently also procedural thinking, depending on what you&#8217;re working on in that team. Multimedia communication is absolutely true. And that&#8217;s true, whether you contribute to the team itself and make sure that the team is functioning and doing their basic tasks. Or if you are organizing an entire event, whether it&#8217;s online or offline or however that is being accomplished.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:07</p>\n\n\n\n<p>Multimedia communication for this particular team is constant for all of their work and something that everyone who works on there gets to practice all the time. For digital literacy, this comes up a lot if what you&#8217;re doing is working through any sort of like programming plans, making sure that what we have in place for events is really excellent. It&#8217;s a really excellent opportunity for practicing the evaluation of information, learning more about media use and creation, and then naturally, everything to do with licenses copyright copyleft, not only for everything that we produce but then also for everyone in the ecosystem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:55</p>\n\n\n\n<p>This team helps so many plugins, authors and theme developers, and other groups who participate in the ecosystem understand the nuances of the GPL and why it matters so much to WordPress. And then in the life skill section, there&#8217;s the obvious life skill section, life skills that have come up for all of them—so digital citizenship, cross-cultural and social communication. But also you have the opportunity to tap into that self-direction and time management practice, which probably should also be considered in all of these teams. But, you know, things change as we go.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>25:45</p>\n\n\n\n<p>Those are the most likely digital literacy skills that you would end up practicing in the Community team, depending on how you are participating in the Community team at that moment.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>25:59</p>\n\n\n\n<p>So I said that we would talk a little bit about where this is all headed and what to do next. And like I just said, when I got lost in my own reverie, they&#8217;re like, hopefully, everything that I&#8217;ve shared here is out of date by 2050. Like, if we can come back to this particular podcast, or this presentation, or anything I&#8217;ve ever said, about digital literacy over my time with WordPress. And if we could come back to that in 2050, or, you know, I was going to say, 20 years from now, 2041 feels really close. But, you know, come back to it in the future, and say, that was all really excellent information to know at the moment. And we did do those things. And now, WordPress has proven that open source contribution and collaboration can teach all of the necessary 21st-century skills that anyone would need to survive in the world. And we did do it, that would be really cool. But I don&#8217;t think that that&#8217;s where we&#8217;re headed. Not because I don&#8217;t think people believe in what I&#8217;m saying or care about what I&#8217;m saying. But because it&#8217;s very easy to kind of let these things go at some point.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>27:20</p>\n\n\n\n<p>Even if you at some point, were proficient in all of what is considered 21st-century skills, sometimes our skills don&#8217;t get used very much. And so we lose track of them. And we don&#8217;t know, or we don&#8217;t know how to teach them to other people and various ways to do that. So I hope that when we revisit this in the time capsule of the internet 20 years from now, we can say that was a great explanation. And we learned so much. And we made so many changes in such progress that now we need a new version of this. That&#8217;s really all we can do, always striving to leave the world in a better position than when we found it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>28:07</p>\n\n\n\n<p>All right, that brings us to our small list of big things. I don&#8217;t have a ton to share with you today. But what I do have to share with you is a really big deal. So we are about a week away from the Go/No-Go point of WordPress 5.9. That is the final release of the year. And as soon as we know what is a go or a no go from that meeting on October 12th,&nbsp; everyone is going just to hit the ground running. And so, if you are interested in contributing to that release, either by being a participant in the release squad or leading some part of the release squad. Absolutely. Drop by and let me know because I am interested to know who wants to learn more about doing that. And this is actually something that has gone by. I mentioned at the top that I spoke at WordCamp US.&nbsp; That is still true; I did do it. And so did a bunch of other really excellent presenters. If you missed WordCamp US on Friday, for whatever reason, because you know, life is complicated. Pretty soon, we will have the videos. We&#8217;ll have all the videos up with captions quickly and have those available for everyone to watch and learn more from as their schedule allows and as their attention allows. And that is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphos, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Yordan Soares\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/09/people-of-wordpress-yordan-soares/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Sep 2021 13:14:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"wptranslationday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11279\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"To coincide with International Translation Day, we feature the story of a developer and translator Yordan Soares from South America.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14138:\"\n<p><strong>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories.</strong> </p>\n\n\n\n<p><strong>To coincide with International Translation Day and the final day of the <a href=\"https://wptranslationday.org/\">2021 WordPress Translation celebration</a>, we feature the story of a WordPresser who has made a major impact in the polyglots team. </strong></p>\n\n\n\n<h2>Beyond software, meeting the WordPress community</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"600\" height=\"600\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?resize=600%2C600&#038;ssl=1\" alt=\"\" class=\"wp-image-11299\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?w=600&amp;ssl=1 600w, https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?resize=300%2C300&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For Yordan Soares from South America, finding WordPress also meant discovering friends, community, and opportunities. He had not expected to find a whole global movement behind the web development software.</p>\n\n\n\n<p>Yordan, who is from Venezuela, South America, said: “The first time I used WordPress, I had no idea what was going on behind the software or beyond it. I knew there was someone making it all work, but I couldn’t even remotely imagine all the people who were making WordPress not just a tool for developing websites, but a whole movement that comes together to share, build, and help make the world better.”<br></p>\n\n\n\n<h2>Turning your hobby into your job</h2>\n\n\n\n<p>Initially, Yordan earned his income from computer technical support and installing networks for small and medium-sized businesses. Back in 2005, web development and code-writing was just a hobby. When he discovered the concept of CSS and how it could make everything dynamic. This opened up a whole new career pathway for him.</p>\n\n\n\n<p>In 2010, an introduction to WordPress through a friend opened up a future he had not imagined. He stopped using any other content management system (CMS) and wanted to explore how much he could do with the platform.</p>\n\n\n\n<p>Three years later in 2013, he was able to take his WordPress journey further by starting a small advertising agency with some of his friends. During this time, they crafted commercials for local radio and TV stations. Through WordPress, they found it easy to build more than 15 websites for businesses in a market that previously had not valued the importance of having an online presence.</p>\n\n\n\n<p>He said: “We were working for almost four years until at the end of 2017 the economic crisis in Venezuela became too acute, and we decided to close the agency when we stopped making profits. Taking stock of that period, I think we changed the way merchants saw the Internet business in the city.”</p>\n\n\n\n<h2>Working full time as a freelancer</h2>\n\n\n\n<p>One year on in 2018, Yordan began to freelance full-time as a web developer. His first clients were primarily agencies and friends who had emigrated to other countries. Later, he expanded into freelance marketplaces.</p>\n\n\n\n<p>At that time, getting started as a freelancer was quite a challenging task in Venezuela. The first hindrance was getting a fair level of recompense. Additionally, the deteriorating conditions in the country with constant blackouts and internet connection failures complicated matters.</p>\n\n\n\n<p>At the time, Yordan was living in Guarenas, where the situation was relatively better. He managed to get a reasonably uninterrupted electricity supply with adequate internet speed, which was just good enough to complete his projects.</p>\n\n\n\n<h2>Meeting the WordPress community</h2>\n\n\n\n<p>“Surely if I hadn’t met the community, I would have continued to work on my own, like a lone wolf, doing the ordinary work of solving problems for occasional customers and paying my bills,” he said.</p>\n\n\n\n<p>Living in Guarenas, Yordan began to experience stability in his career and made new friends and contacts. He began looking for co-working spaces or technology communities nearby, and that’s when he met the WordPress community in Caracas.</p>\n\n\n\n<p>He quickly signed up for the first face-to-face event. As soon as the event concluded, he went to talk to the co-organizer and offered his help. He was inspired to help with designing promotional pieces, managing social networks, and organizing events.</p>\n\n\n\n<p>Through such events, he met and connected with several people living in nearby cities.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:32% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"120\" height=\"300\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/09/WP_Guarenas-Guatire-120x300-1-120x300.png?resize=120%2C300&#038;ssl=1\" alt=\"\" class=\"wp-image-11300 size-medium\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/09/WP_Guarenas-Guatire-120x300-1.png?resize=120%2C300&amp;ssl=1 120w, https://i0.wp.com/wordpress.org/news/files/2021/09/WP_Guarenas-Guatire-120x300-1.png?w=240&amp;ssl=1 240w\" sizes=\"(max-width: 120px) 100vw, 120px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-normal-font-size\"> A few months later, with other WordPress users in the area, the idea emerged to start a new Guarenas-Guatire meetup group. The idea became a reality by December 2019, when they applied to the WordPress community team. </p>\n\n\n\n<p>Once the final approvals came in, the team started scheduling the activities. The <a href=\"https://www.meetup.com/wordpress-meetup-guarenas-guatire/\">WordPress Guarenas-Guatire Meetup</a> was officially recognized!</p>\n\n\n\n<p>During the first quarter of 2020, just before the pandemic, Yordan and colleagues organized five face-to-face events. With the worldwide lockdown, in-person community engagements came to a halt. However, the Guarenas-Guatire community was eager to continue meeting.</p>\n</div></div>\n\n\n\n<p>To keep the community active and motivated, and with the support of sponsors, they started organizing online events under a format called “WordPress a la medianoche” (WordPress at midnight).</p>\n\n\n\n<p>The format of these events was inspired by Alexis Arnal, who suggested meeting at midnight to make the most of the internet speed that would usually improve somewhat after that time!</p>\n\n\n\n<p>At the time of writing, Yordan and the team have organized 16 WordPress a la medianoche events with an attendance of up to 50 people per online gathering. An impressive audience which enabled a comparatively small meetup to keep communications flowing at a difficult and unprecedented time.</p>\n\n\n\n<p>One positive of such events, is an opportunity to invite people from other countries and run sessions in partnership with others. An example was a special translation event with Javier Esteban, a member of the translation team from Spain. The meetup also invited contributors from Mexico, Costa Rica, Peru, and Colombia who were happy to participate.</p>\n\n\n\n<h2>Strengthened by the community</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"241\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=632%2C241&#038;ssl=1\" alt=\"\" class=\"wp-image-11307\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=1024%2C390&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=300%2C114&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=768%2C292&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=1536%2C585&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?w=1889&amp;ssl=1 1889w, https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Yordan (pictured bottom left) speaking at the WordPress Translation Day 2020 events</figcaption></figure>\n\n\n\n<p>Yordan believes that he would have continued to work on his own had he not met the WordPress community.</p>\n\n\n\n<p>He said: &#8220;Fortunately, this was not the case and I have been able to live a lot of transforming experiences that have shown me the meaning of the words &#8216;community&#8217; and &#8216;volunteerism&#8217;.&#8221;</p>\n\n\n\n<p>Yordan felt empowered by the community and it led him to volunteer for many other roles and activities, including Locale Manager for <a href=\"https://translate.wordpress.org/locale/es-ve/\">Spanish Venezuela</a>, a moderator for <a href=\"https://make.wordpress.org/tv/\">WordPress.tv</a>, and as a <a href=\"https://make.wordpress.org/support/\">support</a> contributor in the forums helping people with technical issues. He has also developed free plugins for the official WordPress directory and <a href=\"https://wordpress.tv/speakers/yordan-soares/\">spoken at community events</a> including <a href=\"https://spain.wordcamp.org/2020/session/actualizaciones-automaticas-para-tus-plugins-y-temas-personalizados/\">WordCamp Spain 2020</a>.  </p>\n\n\n\n<p>All this has a boomerang effect, Yordan explains. These experiences helped him grow personally and professionally, as it’s always rewarding to know that you’ve helped improve the WordPress ecosystem.</p>\n\n\n\n<p>He also likes being able to directly help people when they need it and feels it is a two-way learning process.</p>\n\n\n\n<p>&#8220;At first, when I told my family and friends about the community and the work I was doing, they would ask me &#8216;what do you get in return?&#8217; Perhaps they expected me to tell them a specific amount of money, but the answer is more complex,&#8221; he said.</p>\n\n\n\n<p>&#8220;It’s rewarding to know that you’ve helped improve the WordPress ecosystem, the tool you use to work and put food on the table.&#8221;</p>\n\n\n\n<p>During his journey, Yordan has met many wonderful people with common interests and values, and the best part is that many of these people are now his friends, business partners, or customers.</p>\n\n\n\n<p>At the same time, he has learned new skills and gained experience, which have given him a significant confidence boost in facing difficult situations that may come in life.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"332\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=632%2C332&#038;ssl=1\" alt=\"Polyglots special appreciation. Yordan Soares. \" class=\"wp-image-11320\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=1024%2C538&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=768%2C403&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>As part of the <a href=\"https://wordpress.org/news/2021/09/join-us-for-wordpress-translation-day-global-events-in-september-2021/\">WordPress Translation Day 2021</a> celebrations, Yordan was nominated for his contribution to the work of the Polyglots Team translating WordPress. The full nominations list and stories will be published in October and November on the <a href=\"https://wptranslationday.org/\">WordPress Translation Day website</a>. Check out the <a href=\"https://make.wordpress.org/polyglots/2021/09/30/30-days-of-translation-celebration/\">final events for International Translation Day</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Maedah Batool (<a href=\'https://profiles.wordpress.org/maedahbatool/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>maedahbatool</a>), Chloé Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), and Nalini (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>) for work on this story. Thank you to Yordan Soares (<a href=\'https://profiles.wordpress.org/yordansoares/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yordansoares</a>) for sharing his Contributor Story, and to Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support of the series. The WordPress Guarenas-Guatire logo on this page was designed by <a href=\"https://profiles.wordpress.org/bragnieljimenez/\">Bragniel Jimenez</a> </p>\n\n\n\n<p>This People of WordPress feature is inspired by an article originally published on HeroPress.com, a community initiative created by Topher DeRosia. The initiative highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard. Meet more WordPressers in our <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series.</a></p>\n\n\n\n<p>#ContributorStory #HeroPress</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11279\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:65:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Upcoming Gallery Block improvements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/09/upcoming-gallery-block-improvements/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Sep 2021 15:36:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11258\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"Thanks to @javiarce &#38; @annezazu for design and copy contributions. An exciting update to the Gallery Block gives you more ways to show off images in your posts and pages. While this change won’t be available for most folks until WordPress 5.9’s launch in December, we wanted to share some of what’s to come to [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:49:\"https://wordpress.org/news/files/2021/09/Main.mp4\";s:6:\"length\";s:8:\"16081214\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:56:\"https://wordpress.org/news/files/2021/09/Drag-_-Drop.mp4\";s:6:\"length\";s:7:\"1557447\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Kelly Hoffman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2589:\"\n<p><em>Thanks to <a href=\'https://profiles.wordpress.org/javiarce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>javiarce</a> &amp; <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> for design and copy contributions.</em></p>\n\n\n\n<figure class=\"wp-block-video\"><video autoplay controls loop src=\"https://wordpress.org/news/files/2021/09/Main.mp4\"></video></figure>\n\n\n\n<p>An exciting update to the Gallery Block gives you more ways to show off images in your posts and pages. While this change won’t be available for most folks until WordPress 5.9’s launch in December, we wanted to share some of what’s to come to get you excited about the future.</p>\n\n\n\n<h2>Style individual images</h2>\n\n\n\n<p>You can now use the same tools that are available for individual image blocks on <em>each</em> image in the Gallery Block! This added flexibility means you can do more customization &#8211; from adding links to each individual image, inline cropping to edit on the fly, apply unique styles for more visually compelling images, and apply an array of duotone filters.</p>\n\n\n\n<h2>Add custom styles</h2>\n\n\n\n<p>For more advanced folks who like to go a bit deeper in their customizations, you now have the option to add custom CSS styles per image. This is thanks to the ability to assign CSS classes to each image.</p>\n\n\n\n<h2>More accessible and intuitive&nbsp;</h2>\n\n\n\n<p>With this change comes the benefit of improved keyboard navigation and the ability to add alt text right within the block sidebar. You can also drag and drop to rearrange images.</p>\n\n\n\n<figure class=\"wp-block-video\"><video autoplay controls loop src=\"https://wordpress.org/news/files/2021/09/Drag-_-Drop.mp4\"></video></figure>\n\n\n\n<h2>Next steps</h2>\n\n\n\n<p>This will be available in December with the release of WordPress 5.9. You can check it out now if you’re using the Gutenberg plugin on any of your sites. Read more about <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\">becoming an early adopter</a> if you’d like to get ahead.</p>\n\n\n\n<p>If you’re a plugin or theme author who has built upon the Gallery Block functionality,<a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\"> be sure to check out this Dev Note detailing what steps need to be taken for compatibility</a> since this is a breaking change.</p>\n\n\n\n<p>We’re excited to see the new galleries that these options open up and what ideas you have to make creating galleries even better.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11258\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 16: A Sneak Peek at WordPress 5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2021/09/episode-16-a-sneak-peek-at-wordpress-5-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Sep 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11248\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:423:\"In addition to this episode’s small list of big things, Josepha Haden Chomphosy reviews the upcoming 5.9 WordPress release and its Full Site Editing features. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;Chloé Bringmann Song: Fearless First by [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/09/WP-Briefing-016.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11753:\"\n<p>In addition to this episode’s small list of big things, Josepha Haden Chomphosy reviews the upcoming 5.9 WordPress release and its Full Site Editing features.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References </h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">WordPress 5.9 Planning&nbsp;</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">5.9 Target Features</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Gallery Block Refactor Dev Notes</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/The_Cathedral_and_the_Bazaar\">The Cathedral and the Bazaar, 19 Lessons of Open Source</a></p>\n\n\n\n<p><a href=\"https://wptranslationday.org/\">WordPress Translation Day</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a></p>\n\n\n\n<p><a href=\"https://andreamiddleton.blog/2021/09/07/letters-to-an-open-source-contributor/\">Letters to an open source contributor, by Andrea Middleton</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11248\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Joseph Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>Today I&#8217;m going to take you through a quick look at the final WordPress release of 2021. It will be WordPress 5.9. And there will be a ton of things in it, including a fresh new default theme. And there are a few things that you need to know about it right now. The target release date is December 14, 2021, which means some of our milestones happen around Thanksgiving in the US. And a few significant commercial dates globally, days, like Giving Tuesday and Black Friday, etc. I&#8217;ll include a link to the post with all the target dates in the show notes so that you can plan with those in mind. And also in the show notes. I&#8217;ll include a link to Matías Ventura&#8217;s post that includes the target features for the release. When you look at that post, you&#8217;ll notice that you can sort of group things into two big buckets. The two buckets that I grouped them into are themes plus tools, and also better tools.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:31</p>\n\n\n\n<p>So bucket number one themes and all their tools. Three things were important for me as I was reading through them. Number one is that there is a default theme. As of the time of this recording, I&#8217;ve seen the early concepts for the theme, and I love them. Hopefully, by the time this podcast is published, the post that showcases the look and feel will also be up on make.wordpress.org/design. If it is, I&#8217;ll include a link in the show notes to make it easy for everyone to reference.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:04</p>\n\n\n\n<p>The second thing is block themes in general. So WordPress 5.8 brought to core WordPress a lot of the infrastructure needed to create block themes. And in this release in WordPress 5.9, much of that infrastructure will be made available for folks who don&#8217;t always feel comfortable working in the code. That&#8217;s mostly UX and UI changes. So user experience and user interface changes are based on user feedback that we&#8217;ve gathered over the last six to eight months. But it also will include the long-awaited navigation block.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:37</p>\n\n\n\n<p>The third thing that shows up for me in this first bucket, in the themes and all their tools bucket, is the UX and interface for theme.json. The user interface that we&#8217;re making available for theme.json is a major step forward in this project has been referred to as global styles for a few years. And it kind of is what it sounds like on the box, a way for users to tap into that powerful management tool that we have built through theme.JSON.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:09</p>\n\n\n\n<p>Bucket number two, which I am calling publicly &#8220;tools for days.&#8221; But also, I refer to it as design tools, block tools, and pattern tools. I had this whole vision of a Wizard of Oz, “lions and tigers and bears. Oh my!” moment, but I couldn’t make it work. So “design tools and block tools and pattern tools Hoorah!” That&#8217;s as close as we&#8217;re getting. So that&#8217;s my first big number two bucket for you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:37</p>\n\n\n\n<p>For most of these tools, the best way to describe it is quality of life improvements, lots of streamlining of what&#8217;s there, lots of building what&#8217;s not. But there&#8217;s one that&#8217;s substantial and worth digging into a bit more. And that&#8217;s the gallery block refactor. The dev note for this already exists. Like before we had the planning round-up post, the dev note was created. And so I will put a link to that in the show notes. But the headline is that this refactor will make the creation and maintenance of image blocks and the gallery block work the same way. If you are a theme or plugin developer, head on over to the dev notes that I have linked below and take some time to get familiar with it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:20</p>\n\n\n\n<p>And then the final thing, which has a bunch of small things in it, but will make a huge impact for all of our users overall, is that we&#8217;re working on more intuitive and responsive tools on blocks. That has come up frequently in our user testing again over the last six to eight months. And we are going to chip away at that long list of needs that we have in those particular toolsets. And that&#8217;s it. So that&#8217;s a really big broad look at what we&#8217;re trying to get into the final release of the year.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:58</p>\n\n\n\n<p>I&nbsp; know that when I say like this is our hoped for stuff. This is our best guess at the moment. Sometimes it can feel like we should know that already &#8212; I should know already what&#8217;s going into the release. And on the one hand, yes, I believe in this list of things that we&#8217;re going to put into the release, I think they&#8217;re going to be good. But I always refer to it as like the hoped-for things, the things that are on the roadmap, our best targets, because I know that I don&#8217;t ever want to ship something that is going to be a worse experience for users. And so I always like to save the space to be able to remove a feature or remove an enhancement, a little bit closer to the time of the release, just to make sure that what we are offering is the best that we can offer. However, as it says right there in the 19 learnings of open source, “if there&#8217;s a bug, there&#8217;s a job,” right? There&#8217;s a lot of tolerance in open source software for shipping, slightly imperfect work. And that&#8217;s good. When we ship software that&#8217;s a little bit imperfect, it makes it clear how everyone can participate, how everyone could participate, if they could find this WordPress community that supports the CMS.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:20</p>\n\n\n\n<p>If you&#8217;ve never participated in a release and are interested in learning how it goes, you can always follow along on make.wordpress.org/core. And of course, we do a lot of our meetings in the making WordPress, community Slack, which you can find at chat.wordpress.org if you are not already in that particular instance.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:49</p>\n\n\n\n<p>That brings us now to our small list of big things. I have three things on my list for you. The first one is WP Translation day slash month. For folks who&#8217;ve been following along for a bit, you probably noticed that Translation Day has been going on all month long all of September so that we can have small individual local events and bring people into the process of translating WordPress and making WordPress more usable for more people, especially when they don&#8217;t necessarily speak English as their first language. It&#8217;s a wonderful event. There&#8217;s been Translation Day at the end of September for years. And this Translation Month is working its way up to that Translation Day; I will leave a link to the event page in the notes below. And I really encourage you to drop by.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:38</p>\n\n\n\n<p>The second thing is that WordCamp US is coming up on October 1. It is going to be a virtual event, as so many of our events are right now. Tickets are open. The schedule just got published last week. And so we have a good concept of who is talking about what while we&#8217;re there. I suggest you wander over to the schedule. Take a look at anything that might be inspirational to you or anyone who looks like they&#8217;re answering questions that you&#8217;ve had as you have been trying to build your WordPress business.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:08</p>\n\n\n\n<p>And then the third thing on my smallest of big things. Some of you may already be aware that <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a> has left the WordPress project. She has been an absolute fixture in the WordPress open source project for the last ten years. And while we will all miss her terribly, her work has been so influential and so foundational that we actually won&#8217;t really feel much like she&#8217;s gone. We will see the evidence of her work in everything she does and everything she has done while we build a better and more inclusive WordPress after her.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:47</p>\n\n\n\n<p>As a final love letter to the community, she published a series of things that she learned about contributing to open source and especially how to contribute to WordPress as an open source project. I&#8217;m going to link those in the show notes as well. For anyone who has worked with Andrea for a long time, when you read it, it will just remind you of her voice and will be like a nice warm, comforting hug as she heads on to her next endeavors. And for folks who have never worked with her before. It&#8217;s still really excellent information that I think translates into all areas of our work, especially right now as people are moving to distributed work and remote work a bit more. Now I encourage everyone to at least give one or two of them a read.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:38</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11248\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Join us for WordPress Translation Day Global Events in September 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wordpress.org/news/2021/09/join-us-for-wordpress-translation-day-global-events-in-september-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Sep 2021 21:51:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"polyglots\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"translation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:16:\"wptranslationday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11215\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"WordPress contributors around the world are celebrating the sixth Global WordPress Translation Day throughout September 2021! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8447:\"\n<p>WordPress contributors around the world are <a href=\"https://wptranslationday.org/\">celebrating the sixth Global WordPress Translation Day</a> throughout the entire month of September! That&#8217;s 30 days dedicated to help and encourage the volunteers that translate the software and its related resources. One of the highlights will be a <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">series of exciting global events</a>, starting on September 17 2021 and finishing on the United Nations&#8217; International Translation Day itself on September 30, 2021.</p>\n\n\n\n<p>Everyone is welcome to watch these events live on <a href=\"https://www.youtube.com/c/WordPressMarketingTeam\">YouTube</a> and to share their translation stories which will be featured during the celebrations and beyond. The global events will be in English and include presentations on how and why to you should join the thousands of translators in the project, tips and tools, interviews, and much more. </p>\n\n\n\n<p>There are now 205 locales translating in what is a remarkable open source effort, bringing the opportunities of the software and its community to people in their own native languages.   </p>\n\n\n\n<h2>Inaugural session: Introduction and latest news on WordPress Translation</h2>\n\n\n\n<h3><strong>Friday, September 17, 2021 at </strong><a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210917T1000\"><strong>10:00 UTC</strong></a></h3>\n\n\n\n<p>We will start the <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">global events</a> with a panel featuring the latest update on what is happening in the world of WordPress polyglots. Panellists will include translators and polyglot supporters <a href=\"https://profiles.wordpress.org/petya/\">Petya Raykovska</a> and <a href=\"https://profiles.wordpress.org/evarlese/\">Erica Varlese</a>. There will be a video demonstration on how to translate WordPress, a short presentation on translation statistics, a run down of upcoming events, and more. <br><br>Watch the <a rel=\"noreferrer noopener\" href=\"https://www.youtube.com/watch?v=3HSBB5F_ag0\" target=\"_blank\">event live on YouTube</a> (or click on the play button below) &#8211; sign-up for notifications in the video stream right now so you don&#8217;t miss it when it goes live!&nbsp;</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"632\" height=\"356\" src=\"https://www.youtube.com/embed/3HSBB5F_ag0?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h3><strong>Friday, September 17, 2021 at 11:00 UTC</strong> </h3>\n\n\n\n<p>Right after the livestream, there will be a &#8216;drop-in&#8217; translation sprint on Zoom video-conferencing, open to all. You can join and hang out virtually with your Polyglots friends from all around the world and translate WordPress in your own language! <a href=\"https://www.meetup.com/Portsmouth-WordPress-Meetup/events/280823032/\">RSVP for the session now and get joining links!</a> </p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh4.googleusercontent.com/r2rVEDkb39h02LiBg2GdayDk1LpZi6kxZnv1MRzT9h6pgSQE9FMBmyx_kJUA-Pjyy1KD__YlzLYvd1P53o1UIxTEfb0fmQnHm40UU23Wb1slXm-ajdGNP5qOyzHyTI07NBCM-mwY=s0\" alt=\"\" /></figure>\n\n\n\n<h2>Check out the other exciting global events</h2>\n\n\n\n<h3><strong>Sunday, September 19, 2021 <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210919T1200\">12:00 UTC</a></strong></h3>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://www.youtube.com/watch?v=M7UtEKIp2FY\" target=\"_blank\"><strong>Panel on Polyglots Tools</strong></a><a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210919T1200\"> <br></a>Join <a href=\"https://profiles.wordpress.org/amieiro/\">Jesús Amieiro</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad Timotei</a>, and <a href=\"https://profiles.wordpress.org/vibgyj/\">Vibgy Joseph</a> to talk about the tools they’ve contributed to or developed to help translators and translation editors.</p>\n\n\n\n<h3><strong>Tuesday, September 21, 2021 <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210921T1100\">11:00 UTC</a></strong></h3>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=0Ps8byYIwLs\"><strong>Panel on Open Source Translation Communities</strong></a> (YouTube link &#8211; opens in a new tab)<a rel=\"noreferrer noopener\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210921T1100\" target=\"_blank\"><br></a>Join <a href=\"https://profiles.wordpress.org/vanillalounge/\">Zé Fontainhas</a> (WordPress), <a href=\"https://profiles.wordpress.org/tokyobiyori/\">Ali Darwich</a> (WordPress), <a href=\"https://www.linkedin.com/in/mstanke?originalSubdomain=cz\">Michal Stanke</a> (Mozilla), and <a href=\"https://www.linkedin.com/in/satomi-tsujita/?originalSubdomain=jp\">Satomi Tsujita</a> (Hyperledger Fabric) to learn about nurturing translation communities.</p>\n\n\n\n<h3><strong>Thursday, September 30, 2021 <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210930T1600\">16:00 UTC</a></strong></h3>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=qyQUaiK19js\"><strong>Finale Event – Why do you translate?</strong></a> <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210930T1600\"><br></a>Our finale event for 2021 with emcee <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> and a panel from the WordPress Translation Day Team. It will feature highlights from some of the local and global events during the month and a selection of results. Some of the nominees for this year&#8217;s polyglots appreciation will join the livestream to share their stories.</p>\n\n\n\n<p>The livestream will be followed by an after party celebration for anyone who has taken part in the event or is a WordPress polyglot. <a href=\"https://www.meetup.com/Portsmouth-WordPress-Meetup/events/280823393/\">Book now</a> for the session on Zoom.</p>\n\n\n\n<h2>Ideas on how to get involved this September</h2>\n\n\n\n<p>There&#8217;s lots of ways to take part &#8211; discover this <a href=\"https://wptranslationday.org/blog/ways-to-participate/\">list of ideas</a>.</p>\n\n\n\n<p>You can also nominate <a href=\"https://wptranslationday.org/blog/call-for-nominations-polyglots-appreciation/\">translation contributors</a> to be featured in this year&#8217;s celebrations.</p>\n\n\n\n<h2>Help us spread the word about #WPTranslationDay</h2>\n\n\n\n<ul><li>Share what you are translating using the #WPTranslationDay hashtag on: <a href=\"https://www.facebook.com/WPTranslationDay/\">Facebook</a>,<a href=\"https://twitter.com/TranslateWP\"> Twitter</a>, <a href=\"https://www.instagram.com/wptranslationday/\">Instagram</a>, and <a href=\"https://www.linkedin.com/company/wptranslationday/\">LinkedIn</a>! </li><li>You can also find images and translator badges in our <a href=\"https://wptranslationday.org/wptd-2021/media-kit/\">Media Kit</a> to share during September.</li></ul>\n\n\n\n<p>For more information on the 2021 WordPress Translation Day celebrations, visit <a href=\"https://wptranslationday.org/\">the WordPress Translation Day website</a>.</p>\n\n\n\n<p></p>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a>, <a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>, <a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>, <a href=\'https://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a></em> for contributing to this story.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.8.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2021/09/wordpress-5-8-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Sep 2021 03:11:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11190\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"WordPress 5.8.1 is now available! This security and maintenance release features 60 bug fixes in addition to 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated. WordPress 5.8.1 is a short-cycle security and maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8900:\"\n<p>WordPress 5.8.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">60 bug</a> <a href=\"https://github.com/WordPress/gutenberg/pull/34393\">fixes</a> in addition to 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.1 is a short-cycle security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3><strong>Security Updates</strong></h3>\n\n\n\n<p>3 security issues affect WordPress versions between 5.4 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 5.4 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props <a href=\'https://profiles.wordpress.org/mdawaffe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mdawaffe</a>, member of the WordPress Security Team for their work fixing a data exposure vulnerability within the REST API.</li><li>Props to Michał Bentkowski of Securitum for reporting a XSS vulnerability in the block editor.</li><li>The Lodash library has been updated to version 4.17.21 in each branch to incorporate upstream security fixes.</li></ul>\n\n\n\n<p>In addition to these issues, the security team would like to thank the following people for reporting vulnerabilities during the WordPress 5.8 beta testing period, allowing them to be fixed prior to release:</p>\n\n\n\n<ul><li>Props <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\">Evan Ricafort</a>&nbsp;for reporting a XSS vulnerability in the block editor discovered during the 5.8 release’s beta period.</li><li>Props <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>&nbsp;for reporting a privilege escalation issue in the block editor.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the WordPress security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-1/\">version 5.8.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.8.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.1 happen:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van&nbsp;Durpe</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, and <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11190\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"The Month in WordPress: August 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/09/the-month-in-wordpress-august-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Sep 2021 14:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11176\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"I really believe in WordPress’ mission to democratize publishing. And I, for one, will never stop learning about what gives people more access to the software, and what makes the software more usable, and especially how we can combine usability with accessibility in a way that puts form and function on a level playing field. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16142:\"\n<blockquote class=\"wp-block-quote\"><p>I really believe in WordPress’ mission to democratize publishing. And I, for one, will never stop learning about what gives people more access to the software, and what makes the software more usable, and especially how we can combine usability with accessibility in a way that puts form and function on a level playing field.<br></p></blockquote>\n\n\n\n<p>That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> on the “<a href=\"https://wordpress.org/news/2021/08/episode-14-the-art-and-science-of-accessibility/\">The Art and Science of Accessibility</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, talking about accessibility and exploring how it applies to the WordPress open source software. You will find that many of our updates from August 2021 tie in closely with the core principles of access, accessibility, and usability. Read on to find out more!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Join the 2021 WordPress Translation Day Celebrations in September</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wptranslationday.org/\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" width=\"632\" height=\"395\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=632%2C395&#038;ssl=1\" alt=\"WordPress Translation Day 2021 September 1 - 30, 2021\" class=\"wp-image-11177\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=1024%2C640&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=300%2C188&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?resize=768%2C480&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?w=1440&amp;ssl=1 1440w, https://i0.wp.com/wordpress.org/news/files/2021/09/image.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Join WordPress contributors around the world on <a href=\"https://wptranslationday.org/\">WordPress Translation Day celebrations</a> for the entire month of September! The sixth edition of #WPTranslationDay &#8211; which is a cross-team effort led by the Polyglots and Marketing Teams, has a host of fun programs aimed at helping WordPress speak all languages of the world. Want to join the fun? Here’s how.</p>\n\n\n\n<ul><li><a href=\"https://wptranslationday.org/wptd-2021/local-events/\">Join your local translation event</a> and collaborate on efforts to translate WordPress! Can’t find a <a href=\"https://wptranslationday.org/wptd-2021/local-events/\">local event in your area</a>? Why don’t you <a href=\"https://make.wordpress.org/polyglots/2021/08/11/call-for-local-event-organizers-wordpress-translation-day-2021/\">organize one on your own</a>?</li><li>Join <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">one of our global events</a> from September 17-30!<em> </em>We have exciting sessions on <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">polyglots tools and open source translation communities</a>, to name a few.</li><li>You can help<a href=\"https://translate.wordpress.org/\"> translate WordPress to your own language</a>, in your own time, this month! <a href=\"https://make.wordpress.org/polyglots/handbook/translating/first-steps/\">Here’s how!</a></li><li>Share what you are translating using the #WPTranslationDay hashtag on social media, to build excitement around the event! Don’t forget to amplify posts about the event on <a href=\"https://www.facebook.com/WPTranslationDay/\">Facebook</a>, <a href=\"https://twitter.com/TranslateWP\">Twitter</a>, <a href=\"https://www.instagram.com/wptranslationday/\">Instagram</a>, and <a href=\"https://www.linkedin.com/company/wptranslationday/\">LinkedIn</a>!</li></ul>\n\n\n\n<p>&nbsp;For more information, check out <a href=\"https://wptranslationday.org/\">the translation day website</a> and the <a href=\"https://make.wordpress.org/polylgots/tag/wptranslationday/\">Polyglots blog</a>.</p>\n\n\n\n<h2>WordPress Release Updates</h2>\n\n\n\n<p>The Core Team <a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">commenced work</a> on the next major release &#8211; WordPress 5.9. The team aims to ship some cool features such as intrinsic web design to blocks, improved block patterns, navigation menus, better design tools, edit flows for block themes, and a new interface for theme.json. Check out the <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9 development cycle</a> to know more. This release is set to go out in December 2021. The team is also <a href=\"https://make.wordpress.org/core/2021/08/24/wordpress-5-8-x-release-team-and-5-8-1-schedule/\">working on shipping a minor release WordPress 5.8.1</a> –– its <a href=\"https://make.wordpress.org/core/2021/09/01/wordpress-5-8-1-rc-1/\">release candidate</a> is already out and the final release will launch on September 8.</p>\n\n\n\n<p>Want to contribute to WordPress core? Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Don’t miss the Core Team chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC. You can also help <a href=\"https://translate.wordpress.org/\">translate WordPress</a> to your local language &#8211; and what better time to do it, than in September, <a href=\"https://wptranslationday.org/\">during the translation month celebrations</a>? Another fun way to contribute would be to <a href=\"https://make.wordpress.org/marketing/2021/08/11/share-about-wordpress-5-8-on-social-media/\">share about WordPress 5.8 on social media</a>!</p>\n\n\n\n<h2>Say Hello to Gutenberg Versions 11.2 and 11.3</h2>\n\n\n\n<p>We launched Gutenberg <a href=\"https://make.wordpress.org/core/2021/08/05/whats-new-in-gutenberg-11-2-0-4-august/\">version 11.2</a> and <a href=\"https://make.wordpress.org/core/2021/08/18/whats-new-in-gutenberg-11-3-18-august/\">version 11.3</a> this month. <a href=\"https://make.wordpress.org/core/2021/08/05/whats-new-in-gutenberg-11-2-0-4-august/\">Version 11.2</a> adds customizing/color options to the search block, a flex layout for the group block, and a new button for creating posts as part of the publishing flow. <a href=\"https://make.wordpress.org/core/2021/08/18/whats-new-in-gutenberg-11-3-18-august/\">Version 11.3</a> offers a new dimensions panel (replacing the spacing panel) with more styling options, dimensions control for the feature image block, and significant performance improvements for block inserters.<br></p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/07/21/whats-next-in-gutenberg-site-editing-status-check-late-july-august-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates.&nbsp;</p>\n\n\n\n<h2>Get Excited about WordCamp US 2021</h2>\n\n\n\n<p>The biggest WordCamp in North America &#8211; <a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021-</a> is barely a month away. <a href=\"https://us.wordcamp.org/2021/tickets/\">Get your (free) tickets</a>, if you haven’t already! The organizing team has opened up calls for <a href=\"https://us.wordcamp.org/2021/calling-all-musicians/\">musicians</a>, <a href=\"https://us.wordcamp.org/2021/call-for-contributor-stories/\">contributor stories</a>, and <a href=\"https://us.wordcamp.org/2021/call-for-media-partners/\">media partners</a>. Check out <a href=\"https://us.wordcamp.org/2021/\">the event website</a> and follow the event on <a href=\"https://twitter.com/wordcampus\">Twitter</a>, <a href=\"https://www.instagram.com/wordcampus/\">Instagram</a>, and <a href=\"https://www.facebook.com/WordCampUSA\">Facebook</a> to stay updated on all that #WCUS news.</p>\n\n\n\n<h2>Important Announcements/Updates</h2>\n\n\n\n<ul><li>Support for the Classic Editor plugin <a href=\"https://wordpress.org/news/2021/08/an-update-on-the-classic-editor-plugin/\">will be extended for a full year until 2022</a>!</li><li>The Themes Team published a <a href=\"https://make.wordpress.org/themes/2021/08/06/summary-of-the-request-for-feedback-on-requirement-changes/\">feedback summary</a> on the <a href=\"https://make.wordpress.org/themes/2021/07/20/discussion-request-for-feedback-on-requirement-changes/\">proposed requirement changes for WordPress theme review</a>, and will soon be updating the handbook and review tools. You will find more context in their <a href=\"https://make.wordpress.org/themes/2021/08/10/meeting-notes-themes-team-and-theme-authors-regarding-requirements-change/\">meeting notes</a>.</li><li>The Plugins Team <a href=\"https://make.wordpress.org/plugins/2021/08/27/inaccurate-stats-have-been-corrected/\">corrected inaccurate plugin statistics</a> in the plugin directory.</li><li>Check out the <a href=\"https://make.wordpress.org/test/2021/08/17/fse-program-theme-design-survey-results/\">results of the FSE Theme Design (theme.json) survey</a>!</li></ul>\n\n\n\n<h2>Feedback/Testing Requests from Contributor Teams</h2>\n\n\n\n<ul><li>The Testing Team is requesting testing help for a <a href=\"https://make.wordpress.org/test/2021/08/30/week-in-test-30-aug-2021/\">few tickets and patches in WordPress</a>. The team is also looking for volunteers to <a href=\"https://make.wordpress.org/test/2021/08/20/call-for-volunteeers-audit-and-update-testing-instructions-across-the-make-sites/\">audit and update Core testing instructions </a>across different Make sites.</li><li>The Community Team shared a <a href=\"https://make.wordpress.org/community/2021/09/01/proposal-centralized-global-do_action-charity-hackathons/\">proposal on planning online-only recurring global do_action charity hackathons</a>. Share your feedback by September 24.</li><li>The Training Team is also exploring the possibility of adding <a href=\"https://make.wordpress.org/training/2021/08/10/proposal-learner-achievements-on-profiles/\">learner achievements (on learn.wordpress.org) on WP Profiles</a> and is requesting feedback from the community.</li><li>Help the Marketing Team’s outreach research by filling out <a href=\"https://forms.gle/4QFhX8fcNxKAfK8y5\">this 2 question survey</a> on how you search for WordPress release information. If you have any favorite features from the latest release (WordPress 5.8) let the team know by completing this <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSd_2llymf79-h5sgTiprz7Kw4Gr4cbDHh-AAdAQfiArXlHksg/viewform\">short form</a>.</li><li>Version 18.1 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/08/23/call-for-testing-wordpress-for-ios-18-1/\">iOS</a> and <a href=\"https://make.wordpress.org/mobile/2021/08/23/call-for-testing-wordpress-for-android-18-1/\">Android</a> are now available for testing!</li></ul>\n\n\n\n<h2>WordPress Event Updates</h2>\n\n\n\n<ul><li><a href=\"https://floripa.wordcamp.org/2021/\">WordCamp Florianopolis 2021</a> was held on August 11-12, 2021. The event, which sold 390 tickets, had 11 speakers and 4 sponsors. Catch the <a href=\"https://www.youtube.com/channel/UCh1CeGfuDRH-o13xh7kpgUQ\">event recap on YouTube</a>!</li><li><a href=\"https://galicia.wordcamp.org/2021/\">WordCamp Galicia 2021</a> is being held from September 30 &#8211; October 2, 2021! </li><li><a href=\"https://doaction.org/event/karnataka-2021/\">do_action Karnataka 2021</a> was held from August 7-15, 2021. Check out <a href=\"https://wordpressfoundation.org/2021/do_action-karnataka-2021-a-report/\">the recap</a>!</li><li>The Core Team organized a <a href=\"https://make.wordpress.org/core/2021/08/25/hallway-hangout-summary-compare-and-contrast-the-navigation-screens/\">hallway hangout</a> to compare the ‘experimental’ Gutenberg navigation feature with the built-in core feature. The team decided to wait until feature parity with core nav menus, to move the feature from experiments to the main plugin.</li><li>The Diverse Speakers Training group (<a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">#WPDiversity</a>) of the Community Team held their first “<a href=\"https://make.wordpress.org/community/2021/09/02/report-diverse-speaker-workshops-august-2021/\">Allyship for WordPress Event Organizers</a>” workshop on August 19, 2021. The event had 13 attendees from six countries who reported a 52% increase in preparedness to help create inclusive WordPress events. <a href=\"https://make.wordpress.org/community/tag/wpdiversityworkshops/\">Stay tuned</a> for their next workshop in November!</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>Don’t miss this blog post on <a href=\"https://wordpress.org/news/2021/08/widgets-in-wordpress-5-8-and-beyond/\">Widgets in WordPress 5.8 and beyond</a>!</li><li>The Full Site Editing (FSE) Outreach program wrapped up its ninth challenge –– <a href=\"https://make.wordpress.org/test/2021/08/11/fse-program-testing-call-9-handling-highered-headers/\">Handling HigherEd Headers</a>, on September 1. Keep an eye out for <a href=\"https://make.wordpress.org/test/tag/fse-outreach-program/\">test results and future testing call announcements</a>!</li><li>The Test Team is <a href=\"https://make.wordpress.org/test/2021/08/19/test-team-chat-summary-17-august-2021/\">attempting to modernize PHPUnit tests</a> for WordPress.</li><li>The Accessibility Team is testing the <a href=\"https://make.wordpress.org/accessibility/2021/08/20/accessibility-team-meeting-notes-august-20-2021/\">navigation block</a> for accessibility feedback.</li><li>The Docs Team <a href=\"https://make.wordpress.org/docs/2021/08/31/summary-of-docs-team-meeting-aug-24-2021/\">launched a new repository</a> for tracking issues with WordPress documentation: <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker\">https://github.com/WordPress/Documentation-Issue-Tracker</a></li><li>The Training Team <a href=\"https://make.wordpress.org/training/2021/08/17/proposal-brand-guidelines-for-learn-wordpress-content/#comment-3130\">finalized</a> brand <a href=\"https://make.wordpress.org/training/2021/08/17/proposal-brand-guidelines-for-learn-wordpress-content/\">guidelines</a> for <a href=\"https://learn.wordpress.org\">learn.wordpress.org</a>. The team is also working on setting up <a href=\"https://make.wordpress.org/training/2021/08/12/wordpress-101-microcourses-proposal/\">Micro courses for Learn</a>.</li><li>The Openverse Team is <a href=\"https://make.wordpress.org/openverse/2021/08/16/multi-stage-docker-builds-in-the-openverse-api/\">exploring Multistage docker builds</a> as a solution to better set up waveforms for audio search results in the Openverse tool.&nbsp;</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.&nbsp;</em></p>\n\n\n\n<p><em>The following folks contributed to August’s Month in WordPress:&nbsp; <a href=\'https://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a> <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a> <em><a href=\'https://profiles.wordpress.org/nao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nao</a></em> <a href=\'https://profiles.wordpress.org/jillbinder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jillbinder</a></em> <em><a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11176\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"An Update on the Classic Editor Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2021/08/an-update-on-the-classic-editor-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 Aug 2021 16:51:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11149\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"Before the release of WordPress 5.0 in 2018, the Classic Editor plugin was published to help ease the transition to the new block editor. At the time, we promised to support the plugin through 2021 and adjust if needed as the deadline got closer. After discussing this with Matt, it&#8217;s clear that continuing to support [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1583:\"\n<p>Before the release of WordPress 5.0 in 2018, the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a> was published to help ease the transition to the new block editor. At the time, we promised to support the plugin through 2021 and adjust if needed as the deadline got closer. After discussing this with Matt, it&#8217;s clear that continuing to support the plugin through 2022 is the right call for the project as well as the community.</p>\n\n\n\n<p>Still, if you’ve been putting off using the block editor, this is an excellent time to give it another shot. Since it first appeared in 2018, hundreds of WordPress contributors have made a lot of updates based on user feedback. You will be pleasantly surprised at how far it’s come!</p>\n\n\n\n<p>Big thanks to everyone who has been working on WordPress, Gutenberg, and the Classic Editor plugin. And thank you to every WordPress user and tester who has provided the feedback we need to make the software even better.</p>\n\n\n\n<p>~ Josepha</p>\n\n\n\n<p><em>Returning to the block editor for the first time in a long time? You can give feedback early in the process by <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">joining the outreach program</a>! Looking at it for the first time ever? <a href=\"https://learn.wordpress.org/workshops/?series=24&amp;topic=&amp;language=&amp;captions=\">Get your bearings with some workshops</a> or <a href=\"https://wordpress.org/support/article/wordpress-editor/#how-does-the-block-editor-work\">check out this demo</a>!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WP Briefing: Episode 15: A Very WordPress Blooper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/08/episode-15-a-very-wordpress-blooper/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Aug 2021 22:14:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11146\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"Ever wonder what it\'s like behind the scenes of WP Briefing? Listen in on this episode for a little levity and Josepha\'s bloopers.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:65:\"https://wordpress.org/news/files/2021/08/WP-Briefing-Bloopers.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8885:\"\n<p>Ever wonder what it&#8217;s like behind the scenes of WP Briefing? Listen in on this episode for a little levity and Josepha&#8217;s bloopers.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11146\"></span>\n\n\n\n<p>[contemporary intro music]</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to a bonus briefing. Normally I talk to you about WordPress and stuff, but I figured that we all need a little levity in our lives right now. So today&#8217;s episode is actually just a series of bloopers and mistakes that I&#8217;ve made while recording. When I was preparing for this podcast, no one mentioned the deep weirdness of standing alone in your closet talking to yourself, nor did they realize just how lost I can get in the surpassingly, lovely lyricism of a lilting line, and then just have no idea what I&#8217;m supposed to be reading in the script that I wrote for myself. So, my dear friends, I hope these bring you a little laugh. And if we&#8217;ve got any luck at all, you may also hear me singing to myself, my computer, or about how terrible my talking just was. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:12</p>\n\n\n\n<p>Hello, everyone, and welcome to a bonus briefing. I know I wasn&#8217;t going to sit boop, boop.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:21</p>\n\n\n\n<p>I messed up the thing where I&#8217;m talking about how I mess up, of course. I&#8217;m going to do it one more time, and you can choose whatever is a reasonable thing there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:33</p>\n\n\n\n<p>Because we had such a lengthy WP Briefing, WordPress, I’m going to just start that over again. Sorry, everyone.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:42</p>\n\n\n\n<p>My friends. Oh, no. I don&#8217;t know how I end my own show. How do I end my own show? There we go. Sorry.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:52</p>\n\n\n\n<p>That was a weird way to say that. I&#8217;m going to start over again from the transition. And then we&#8217;re just going to go straight through to the end. Maybe.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:03</p>\n\n\n\n<p>The names that&#8230; I sound weird. I sound like I don&#8217;t know what my words are. And I said I wrote the words. I said I was all going to go in one go, and I&#8217;m a liar today. Okay, here we go. For realsies!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:16</p>\n\n\n\n<p>Final first last take. Here we go. Sorry, I made myself laugh.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:22</p>\n\n\n\n<p>Matt Mullenweg. And, and I, I&#8217;m also in that group. I don&#8217;t know why I said that like it was a surprise. I have me too. I&#8217;m also in there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:33</p>\n\n\n\n<p>Ugh, I ran out of air. For reasons, it was a short sentence. I don&#8217;t know why I ran out of air.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:43</p>\n\n\n\n<p>Coming out on April 14. That&#8217;s not true. It&#8217;s April 13. Right?</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:50</p>\n\n\n\n<p>On the form below to share the. Pfft &#8211; what are the things!&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:58</p>\n\n\n\n<p>This is WP Briefing episode seven, no title because I don&#8217;t know what to call it because I gave it a title already. I gave it two titles, and then couldn&#8217;t remember why I gave it those titles. So I&#8217;ll come up with a title before we publish it. But I also have no idea what it is. I&#8217;m going to ask for help. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:17</p>\n\n\n\n<p>Testing project since I have too many commas, and I really believed in my comma when I said it. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:24</p>\n\n\n\n<p>Prior to Gutenberg&#8230; pfft. Open source software like WordPress. I was going to smash that sentence into half a sentence. I was going to say when you know what you&#8217;re workussing on you have a solution which is not my friends of thing. So, I am just going to say the sentence again. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:47</p>\n\n\n\n<p>I was sitting over here wringing my hands for some reason during that entire list. And so if you can hear me wringing my hands, which would be a whole new height of anxiety for anyone, you let me know, and I will rerecord that also.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:00</p>\n\n\n\n<p>Get a concept of. Nope, this is a lie. Get a concept of where to get your tickets is the silliest thing. I&#8217;m starting over from the small list of big things. Also, because I got too excited about how big my list is. I am going to get that excited again. But I will try not to shout about it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:17</p>\n\n\n\n<p>&#8220;Humming intro song&#8221; Dun dun dun dun dun.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:23</p>\n\n\n\n<p>Sorry, I had to scroll up, and I try not to scroll up when I&#8217;m talking in case maybe my whole computer turns into a microphone. Sorry, I&#8217;m just going to keep going because this has been a fine take so far.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:34</p>\n\n\n\n<p>Mercy! I have words that I can say with my mouth. They aren&#8217;t these words today. It seems.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:45</p>\n\n\n\n<p>Build up to&#8230; Oh my goodness. My stomach grumbled, and this microphone, I know,&nbsp; picked it up. And so I&#8217;m going to redo bullet two so that we don&#8217;t just have a small monster under the bed in the middle of the podcast.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:03</p>\n\n\n\n<p>Also, like DEI, I feel s—Eh &#8211; maybe I should say, DEI, somewhere in there, so it&#8217;s clear for people cause I&#8217;m talking to people and not actually a screen. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:17</p>\n\n\n\n<p>Before I joined the WordPress project, the majority of my work with accessibility was in the context of the digital divide. Now, when talking about the digital divide, there are three concepts around quote-unquote, getting things to people. And those concepts are&#8230; I guess I could say the thing, hold on one second, I can do it. I feel like I&#8217;m chopping up my words like I&#8217;m not really breathing very well. So I apologize. But here we go again.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:58</p>\n\n\n\n<p>Don&#8217;t include that one. Sorry, I&#8217;m so nervous about this episode that, like, my mouth is getting dry, and I worry that you can hear it, and it drives me nuts every time I hear podcasters with a dry mouth, and you can just like hear it clicking and always stresses me out. I&#8217;m like, someone should give that poor thing a drink of water. And I just know I&#8217;m going to feel that way about myself later. And so I&#8217;m trying to stay hydrated, but it also means that I have to stop every two paragraphs and take a drink of water. I apologize for that interlude. I am about to start again, at my next section, which is like, halfway through.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:39</p>\n\n\n\n<p>Also, I learned that you can hear me swallowing my water with this microphone because it is a spectacular microphone. And so, I apologize for that as well. All right. Here I go. I&#8217;m going to do it all in one take. Watch me.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:56</p>\n\n\n\n<p>But I also have questions, especially about how to move everything forward. Mm-hmm. Whoops. I put especially in the wrong spot. But I also thought&#8230;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:10</p>\n\n\n\n<p> Ta da, we did it. Gosh, that&#8217;s a short one. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:16</p>\n\n\n\n<p>I did it. Where&#8217;s my where&#8217;s my turning offing button.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:22</p>\n\n\n\n<p>Tada! And scene and done.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11146\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Widgets in WordPress 5.8 and Beyond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/08/widgets-in-wordpress-5-8-and-beyond/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Aug 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11115\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:367:\"Copy and Design by @critterverse WordPress 5.8 brings the power of Gutenberg blocks to widget areas — which means the highly customizable layout and styling options bring you closer to a&#160;WYSIWYG editing experience. I made a test site based on the oldie-but-goodie Twenty Sixteen theme, with three separate widget areas. In this post, I’ll highlight [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/08/classic-widgets.mov\";s:6:\"length\";s:7:\"6475399\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/08/block-widgets-1.mov\";s:6:\"length\";s:8:\"23931847\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2021/08/custom-html-1.mov\";s:6:\"length\";s:8:\"13767042\";s:4:\"type\";s:15:\"video/quicktime\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7682:\"\n<p><strong><em>Copy and Design by <a href=\'https://profiles.wordpress.org/critterverse/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>critterverse</a> </em></strong></p>\n\n\n\n<p>WordPress 5.8 brings the power of Gutenberg blocks to widget areas — which means the highly customizable layout and styling options bring you closer to a&nbsp;WYSIWYG editing experience. I made a test site based on the oldie-but-goodie <a href=\"https://wordpress.org/themes/twentysixteen/\">Twenty Sixteen theme</a>, with three separate widget areas. In this post, I’ll highlight a few cool things that are now possible to do with your widgets and where things may be heading next.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"1130\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=632%2C1130&#038;ssl=1\" alt=\"A zoomed-out view of a single post with one sidebar widget area and two footer widget areas. The site content is about Marine Park Salt Marsh. A List View of blocks floating next to each widget area shows how the design is constructed.\" class=\"wp-image-11116\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?w=2183&amp;ssl=1 2183w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=168%2C300&amp;ssl=1 168w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=573%2C1024&amp;ssl=1 573w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=768%2C1373&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=859%2C1536&amp;ssl=1 859w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?resize=1145%2C2048&amp;ssl=1 1145w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/08/site-long-1x.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a><figcaption><br><br><br><br></figcaption></figure></div>\n\n\n\n<h2>Create Interesting Visual Effects With Overlapping Layouts and Duotone Images</h2>\n\n\n\n<p>Appearance-wise, users have a lot more control over widget areas than ever before — especially through the use of blocks with customization options like the Cover and Image block. Here’s what I can create in the classic widgets editor (above) versus what I can create in the new block-based widget editor (below).</p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"https://wordpress.org/news/files/2021/08/classic-widgets.mov\"></video></figure>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"https://wordpress.org/news/files/2021/08/block-widgets-1.mov\"></video></figure>\n\n\n\n<h2>Intersperse Widgets and Custom Code Throughout Your Visual Designs</h2>\n\n\n\n<p>Container blocks like Cover and Columns make it easy to weave dynamic or interactive elements into your designs. While this is a given for many widgets, the block versions of widgets can be easily wrapped and layered within container blocks to integrate them into your layout more fully.</p>\n\n\n\n<p>In the example below, I tried placing a Search block in front of a Cover block, which creates a nice layered effect. I also inserted Custom HTML blocks within a Columns block to display different messaging depending on the time of day. (<a href=\"https://stackoverflow.com/questions/31242051/show-content-based-on-time-of-day-timing-changes-on-different-days-of-the-week\">jQuery script</a>)</p>\n\n\n\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"https://wordpress.org/news/files/2021/08/custom-html-1.mov\"></video></figure>\n\n\n\n<h2>Use Traditional Widget Layouts (Or Not) With Lots of Flexibility Over Title and Structure</h2>\n\n\n\n<p>Classic widgets have always had a lockup that includes a widget title. One cool thing about having blocks in widget areas is that you have complete flexibility over how titles appear. For example, you might choose to have a title over every widget, you might only want one title at the top of each widget area, or your design might not need titles at all.</p>\n\n\n\n<p>Note: Some themes, like <a href=\"https://wordpress.org/themes/twentytwentyone/\">Twenty Twenty-One</a>, are designed to flow content horizontally within widget areas. If you’re having trouble with a theme splitting your layout into columns, you could try keeping the lockup together by containing it within a Group block.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"381\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=632%2C381&#038;ssl=1\" alt=\"Side-by-side comparison of List View of a Sidebar widget area with and without grouped/nested lockups.\" class=\"wp-image-11122\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?w=1760&amp;ssl=1 1760w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=300%2C181&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=1024%2C618&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=768%2C463&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?resize=1536%2C927&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/08/grouped.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></div>\n\n\n\n<h2>Copy &amp; Paste Existing Layouts From the WordPress Pattern Directory</h2>\n\n\n\n<p>While patterns haven’t been fully integrated into the widget editors yet, one thing you <em>can</em> do is copy and paste patterns from the game-changing new <a href=\"https://wordpress.org/patterns/\">WordPress Pattern Directory</a> into your site’s widget areas. I used this <a href=\"https://wordpress.org/patterns/pattern/horizontal-call-to-action/\">horizontal call to action</a> pattern from the directory almost exactly as is, with minor color and copy adjustments:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"389\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=632%2C389&#038;ssl=1\" alt=\"Footer widget area with a black box that reads, “Become a monthly patron” with paragraph text and a “Join now” button in a separate column. A painted image of waves hitting rocks is directly below with no space between them.\n\" class=\"wp-image-11123\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?w=1656&amp;ssl=1 1656w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=300%2C185&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=1024%2C630&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=768%2C473&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?resize=1536%2C945&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/08/footer.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a><figcaption><br></figcaption></figure></div>\n\n\n\n<p>FYI: Patterns have not been curated for or integrated into widget areas yet, so you may run into some unexpected behavior — consider this feature to be a preview of what’s coming next for widget editing!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11115\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2021/08/the-month-in-wordpress-july-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Aug 2021 13:53:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11107\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"WordPress is global in reach and open source in nature. And you would assume that what allows the software to be used by anyone would also enable it to be built by anyone. After all, your location doesn’t matter, and who employs you also doesn’t matter. And your relative social standing certainly shouldn’t matter. As [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15260:\"\n<blockquote class=\"wp-block-quote\"><p>WordPress is global in reach and open source in nature. And you would assume that what allows the software to be used by anyone would also enable it to be built by anyone. After all, your location doesn’t matter, and who employs you also doesn’t matter. And your relative social standing certainly shouldn’t matter. As long as you can communicate with the others contributing to the project, there should be no obstacle to your participation.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> on the “<a href=\"https://wordpress.org/news/2021/07/episode-13-cherishing-wordpress-diversity/\">Cherishing WordPress Diversity</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the importance of diversity, equity, and inclusion within the fabric of the WordPress project. Her statement captures the spirit of the WordPress open source project, and we hope it resonates with you. Now, let&#8217;s dive in!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Say hello to WordPress 5.8</h2>\n\n\n\n<p>WordPress <a href=\"https://wordpress.org/news/2021/07/tatum/\" target=\"_blank\" rel=\"noreferrer noopener\">version 5.8</a>, “Tatum,” came out on July 20. Version 5.8 is a major release that offers features like block-based widgets, a host of new blocks and patterns, a template editor, a duotone feature to stylize images, theme.json, and support for webP images, to name a few. Read more in the <a href=\"https://wordpress.org/news/2021/07/tatum/\">release post</a>, the <a href=\"https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/\">field guide</a>, and the <a href=\"https://make.wordpress.org/community/2021/06/18/meetup-group-resources-talking-points-for-wordpress-5-8/\">talking points post for meetup groups</a>. </p>\n\n\n\n<p>Want to contribute to WordPress core?&nbsp;</p>\n\n\n\n<ul><li>Join the&nbsp; <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Don’t miss the Core Team chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.</li><li><a href=\"https://translate.wordpress.org/\">Translate WordPress</a> to your local language &#8211; here’s the <a href=\"https://make.wordpress.org/polyglots/2021/07/09/wordpress-5-8-translation-status-july-9-2020/\">latest translation status</a>.</li><li>Contact the Marketing Team in the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> slack channel, if you wish to support <a href=\"https://make.wordpress.org/marketing/2021/07/21/social-media-pack-for-5-8-ongoing-collaborations/\">social media engagement around WordPress 5.8</a>.</li></ul>\n\n\n\n<h2>Gutenberg Version 11.0 is released</h2>\n\n\n\n<p>Contributor teams released the <a href=\"https://make.wordpress.org/core/2021/07/09/whats-new-in-gutenberg-11-0-0-9-july/\">11th version</a> of Gutenberg on July 9. <a href=\"https://make.wordpress.org/core/2021/07/09/whats-new-in-gutenberg-11-0-0-9-july/\">Version 11.0</a>, which focuses heavily on backports and bug fixes, showcases some cool features such as an editing overlay for template parts and reusable blocks, and support for CSS shorthand properties in theme.json and block attributes. <a href=\"https://make.wordpress.org/core/2021/07/21/whats-new-in-gutenberg-11-1-0-21-july/\">Version 11.1</a> was also shipped this month, on July 21. The release adds custom block borders as block supports and adds “drag and drop” to the list view.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/07/21/whats-next-in-gutenberg-site-editing-status-check-late-july-august-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates.&nbsp;</p>\n\n\n\n<h2>Returning to in-person WordPress events</h2>\n\n\n\n<p>The Community Team kicked off work to bring back in-person WordPress events. The team <a href=\"https://make.wordpress.org/community/2021/07/01/in-person-meetup-events-for-vaccinated-community-members/#comment-29654\">recently announced</a> that in-person WordPress meetups can be organized in a region if the local public health authority allows in-person events and if the region passes the in-person<a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\"> safety checklist</a>. If the region does not meet guidelines on page one of the <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\">safety checklist</a>, organizers can plan events for fully vaccinated, recently tested (negative), or recently recovered community members. Subsequently, the team also <a href=\"https://make.wordpress.org/community/2021/07/27/proposal-how-to-return-to-safe-in-person-wordcamps/\">shared a proposal for the return to in-person WordCamps</a> in places that meet the <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\">safety guidelines and the vaccination/testing requirements</a>. Please share your feedback on the post if you have any thoughts. For more context, check out the “<a href=\"https://wordpress.org/news/2021/07/episode-12-wordpress-in-person/\">In Person!</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>.&nbsp;</p>\n\n\n\n<p>Want to contribute to the Community Team? Follow the <a href=\"https://make.wordpress.org/community/\">Community Team</a> blog, or join them in the <a href=\"https://wordpress.slack.com/archives/C037W5S7X\">#community</a> channel in the Make WordPress Slack.&nbsp;</p>\n\n\n\n<h2>BuddyPress 9.0 is out</h2>\n\n\n\n<p>The BuddyPress team is busy! Within barely a month of their last major release (<a href=\"https://buddypress.org/2021/06/buddypress-8-0-0-alfano/\">version 8.0)</a>, the team shipped <a href=\"https://buddypress.org/2021/07/buddypress-9-0-0-mico/\">version 9.0</a> on July 19. Key features of the release include widget blocks and updates to the BP REST API.&nbsp; Download it from the <a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin directory</a> or check it out from its <a href=\"https://buddypress.trac.wordpress.org/browser/branches/9.0\">subversion repository.</a> Want to help build BuddyPress? Follow their <a href=\"https://bpdevel.wordpress.com/\">developer relations blog</a>, check out their <a href=\"https://codex.buddypress.org/participate-and-contribute/contribute-with-code/\">handbook page</a>, or join them in the <a href=\"https://wordpress.slack.com/archives/C02RQBYUG\">#buddypress</a> channel in the Make WordPress Slack.</p>\n\n\n\n<h2>WordPress Event updates</h2>\n\n\n\n<ul><li>WordCamp US is coming back on October 1, 2021, <a href=\"https://us.wordcamp.org/2021/wordcamp-us-is-back/\">as a daylong online event</a>!</li><li>Free tickets for <a href=\"https://floripa.wordcamp.org/2021/inscricoes/\">WordCamp Florianopolis</a> (August 11-12) are now available.</li><li>The <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Diverse Speaker Training group</a> of the Community Team announced <a href=\"https://make.wordpress.org/community/2021/07/26/announcement-and-call-for-volunteers-expanding-wpdiversity-to-three-programs/\">three new programs</a> for Meetup and WordCamp organizers. Sign up for the <a href=\"https://make.wordpress.org/community/2021/07/30/workshop-august-19-2021-allyship-for-wordpress-event-organizers-amer-emea/\">inaugural allyship program for event organizers</a> on August 19, 2021, at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210819T1700\">5:00</a> &#8211; <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210819T1900\">7:00 pm</a> UTC!</li><li>The Polyglots Team is planning a <a href=\"https://make.wordpress.org/polyglots/tag/wptranslationday/\">month-long translation day celebration in September 2021</a>, with two weeks of “core events” from September 17 to 30. The team will announce more details on the event shortly, and you <a href=\"https://make.wordpress.org/polyglots/tag/wptranslationday/\">can follow all the latest updates on their P2</a>.&nbsp;</li><li>Stay updated on <a href=\"https://make.wordpress.org/community/events/online/\">online WordPress meetups</a> around the world by following the Marketing Team’s <a href=\"https://www.linkedin.com/company/make-wordpress-marketing-team/\">WordPress Meetup roundup</a> every Monday.&nbsp;</li><li><a href=\"https://santaclarita.wordcamp.org/2021/\">WordCamp Santa Clarita 2021</a> was held online on July 17-18, 2021. The highlight of the event, which had 41 speakers, 19 sponsors, and 672 attendees, was a <a href=\"https://santaclarita.wordcamp.org/2021/schedule/\">dedicated track for WordPress accessibility</a>. Videos of the event will soon be posted on WordPress.tv.</li><li>The Hosting Team organized <a href=\"https://www.meetup.com/wphosting/events/278295555\">their first meetup</a> in June. Check out the <a href=\"https://www.youtube.com/watch?v=V4UCc1Bze5E&amp;t=702s\">event recording</a>.</li></ul>\n\n\n\n<h2>Feedback requests from WordPress contributor teams</h2>\n\n\n\n<p>Please help these WordPress contributor teams by answering their research requests:</p>\n\n\n\n<ul><li>The Core Team has published a <a href=\"https://make.wordpress.org/core/2021/07/28/wordpress-5-8-tatum-retrospective/\">WordPress 5.8 release retrospective</a>. Share your release feedback as <a href=\"https://make.wordpress.org/core/2021/07/28/wordpress-5-8-tatum-retrospective/#respond\">comments on the post</a> or by <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSei8fSLjV0um4hk_1JKwgu-8E6mpNwwxF3j43mInW7lnVOTDw/viewform?usp=sf_link\">filling out this form</a> before August 15. The team is also <a href=\"https://make.wordpress.org/core/2021/07/21/request-for-feedback-updater-proof-of-concept/\">requesting feedback</a> on a “proof of concept” for the new WordPress updater.&nbsp;</li><li>The Training Team wishes to <a href=\"https://make.wordpress.org/training/2021/07/30/learn-wordpress-user-survey-focus-groups/\">find what learners and potential learners would like to see</a> in the <a href=\"https://learn.wordpress.org\">learn.wordpress.org</a> platform. To contribute, please <a href=\"https://www.surveymonkey.com/r/LearnWordPress\">fill out an anonymous survey</a> (by August 13) OR <a href=\"https://forms.gle/jdk2qkkvGyszx1SG6\">join a short video call</a> to share feedback (on the week of August 2-6).</li><li>The Polyglots Team <a href=\"https://make.wordpress.org/polyglots/2021/07/19/polyglots-training-ready-for-testing/\">announced</a> that “Polyglots Training” (a course to help WordPress translators and communities) is now available for testing. <a href=\"https://make.wordpress.org/polyglots/2021/07/19/polyglots-training-ready-for-testing/\">Sign up now</a>!</li><li>The Test Team wants to<a href=\"https://make.wordpress.org/test/2021/07/30/help-shape-the-future-of-theme-design/\"> hear from theme authors</a> on how they use theme.json in order to shape its future. Help them by <a href=\"https://wordpressdotorg.survey.fm/block-theme-author-feedback\">filling out this survey</a> on or before August 13.</li><li>The Marketing Team is doing research on building engagement around WordPress releases. Please help the team by filling out <a href=\"https://forms.gle/4QFhX8fcNxKAfK8y5\">this quick, two-question survey</a> on how you search for release information. If you have any favorite features from the latest release (WordPress 5.8) let the team know by completing this <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSd_2llymf79-h5sgTiprz7Kw4Gr4cbDHh-AAdAQfiArXlHksg/viewform\">short form</a>.</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further reading</h2>\n\n\n\n<ul><li>The Meta Team launched the new <a href=\"https://make.wordpress.org/meta/2021/07/20/the-wordpress-pattern-directory-is-live/\">WordPress Pattern Directory</a> alongside the 5.8 release. The Design Team also contributed to this project, working with contributors on <a href=\"https://make.wordpress.org/design/2021/07/29/initial-patterns-for-the-patterns-directory-launched/\">launching around 85 block patterns in the directory</a>.</li><li>Check out the following blog posts from the Design Team: <a href=\"https://make.wordpress.org/design/2021/07/13/a-walk-around-the-search-block/\">A Walk Around: The Search Block</a> and <a href=\"https://make.wordpress.org/design/2021/07/27/widgets-in-wordpress-5-8-and-beyond/\">Widgets on 5.8 and beyond</a>. Join their <a href=\"https://make.wordpress.org/design/?s=show+and+tell\">Show and Tell meetings</a> on the last Wednesday of each month to learn about updates on their latest projects and new ideas.</li><li>Check out <a href=\"https://wordpress.org/news/2021/07/configuring-theme-design-with-theme-json/\">this blog post</a> to learn how to configure theme design with theme.json.&nbsp;</li><li>The Test Team has put out a <a href=\"https://make.wordpress.org/test/2021/07/20/test-team-reps-call-for-nominations/\">call for team-rep nominations</a>.</li><li>The Themes Team is in the process of discussing <a href=\"https://make.wordpress.org/themes/2021/07/20/discussion-request-for-feedback-on-requirement-changes/\">updated theme directory guidelines</a>.</li><li>Version 17.9 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/07/27/call-for-testing-wordpress-for-android-17-9/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2021/07/28/call-for-testing-wordpress-for-ios-17-9/\">iOS</a> are now available for testing.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.&nbsp;</em></p>\n\n\n\n<p><em>The following folks contributed to July’s Month in WordPress:&nbsp; <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a> <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a> <a href=\'https://profiles.wordpress.org/jillbinder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jillbinder</a> <a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a> <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WP Briefing: Episode 14: The Art and Science of Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2021/08/episode-14-the-art-and-science-of-accessibility/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Aug 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11096\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:463:\"In this episode, Josepha Haden Chomphosy discusses the nuances of building accessible software, the differences between access, usability, and accessibility, and how this all applies to the WordPress project. Have a question you’d like answered? You can submit them to&#160;wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;Chloé Bringmann Transcription: [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/07/WP-Briefing-014.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9393:\"\n<p>In this episode, Josepha Haden Chomphosy discusses the nuances of building accessible software, the differences between access, usability, and accessibility, and how this all applies to the WordPress project.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Transcription: <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/about/accessibility/\">About WordPress Accessibility</a></li><li><a href=\"https://make.wordpress.org/accessibility/\">Make WordPress Accessibility Team</a></li><li><a href=\"https://twitter.com/wpaccessibility\">WordPress Accessibility Team Twitter</a></li><li><a href=\"https://make.wordpress.org/accessibility/handbook/best-practices/\">WordPress Accessibility Handbook</a></li><li><a href=\"https://developer.wordpress.org/coding-standards/wordpress-coding-standards/accessibility/\">Accessibility Coding Standards</a></li><li><a href=\"https://www.w3.org/WAI/intro/wcag\">Web Content Accessibility Guidelines (WCAG)</a></li><li><a href=\"https://www.a11yproject.com/checklist/\">A11y Checklist</a></li><li><a href=\"https://en.wikipedia.org/wiki/Digital_divide\">The Digital Divide</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11096\"></span>\n\n\n\n<p>[contemporary intro music]</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 0:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[musical interlude]</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 0:28</p>\n\n\n\n<p>This is the second of my big scary topics for this month. I&#8217;ll be talking about accessibility, which much like Diversity, Equity and Inclusion, or DEI in the last episode, is one of those areas where the work is never finished. Also, like DEI in last episode, I feel strongly about accessibility and the need for accessible experiences in the world, but I&#8217;m aware that this is an area where I&#8217;m still learning.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 1:04</p>\n\n\n\n<p>WordPress has both an accessibility statement and team, which makes a lot of sense given that the software supports so many different people, and industries, and cultures. But if you&#8217;re not quite bought into the idea that software should be accessible, or that accessible software can&#8217;t also be usable, then this is the episode for you.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 1:25</p>\n\n\n\n<p>Before I joined the WordPress project, the majority of my work with accessibility was in the context of the digital divide. Now, when talking about the digital divide, there are three concepts around quote-unquote, &#8220;getting things to people,&#8221; and those are access, usability, and accessibility. Sometimes these words seem interchangeable, but ultimately they have nuanced differences that address different problems. And I like to think of them this way.</p>\n\n\n\n<p>Access is making sure that someone can obtain something.</p>\n\n\n\n<p>Usability is making sure that the user experience is understandable or coherent.</p>\n\n\n\n<p>And accessibility is making sure that it&#8217;s usable by the largest number of people.</p>\n\n\n\n<p>I have always considered each as a subset of the one that came before it. So having something everyone can access is good, but easy to access and easy to use is better. Easy to use is good, but easy to use and easily accessible is better.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 2:27</p>\n\n\n\n<p>After joining WordPress, I discovered that accessibility in the context of software building is well, substantially more complicated. There&#8217;s no such thing as perfect accessibility, or a site that is 100% accessible, and many aspects are pretty open to interpretation. It turns out that accessibility, like so many things in WordPress, is a complicated intersection of art and science.</p>\n\n\n\n<p>As an example, there&#8217;s a rule that says, &#8220;Ensure that links are recognizable as links.&#8221; A fast shorthand to accomplish that, that we see all over the internet, is to underline all links or put that icon next to it that says, &#8220;This opens in a new tab.&#8221; You know that icon that&#8217;s a box with an arrow? That definitely has a name, that I definitely don&#8217;t know? That icon. [laughing] But those solutions don&#8217;t necessarily fit every context that you&#8217;ll find a link in, and that&#8217;s where we see that intersection between the art of communication and the science of necessity.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 3:32</p>\n\n\n\n<p>If you came with me earlier on the idea that accessibility is a subset of usability, and it&#8217;s not a far leap to say that the choices around accessibility implementations should always include design and the overall user experience.</p>\n\n\n\n<p>I know that some of you are thinking, &#8220;But we have guidelines! Like, that&#8217;s why we have the guidelines, so that not everything has to be a gray area.&#8221; And on the one hand, yeah, that&#8217;s true. There are a lot of guidelines. There are guidelines for the code, and what the code produces, and the design elements. But I worry that when a solution is driven solely by rules, rather than reasons, we run the risk of throwing out the good along with the bad.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 4:15</p>\n\n\n\n<p>Accessibility has been a consistent topic of debate in the project for as long as I can remember, and based on all of this, it&#8217;s really clear why. There are a few big picture questions that still deserve some sort of canonical answer for WordPress, and where possible I dig in and research the positions that everyone has taken in the past. But I also have questions about how to move everything forward, especially as the editing experience gets more and more standardized across the software, which reduces cognitive load, shortens the learning curve, etc.</p>\n\n\n\n<p>What is the future possibility for having a series of more niche admin interface options?</p>\n\n\n\n<p>What would it be like to be able to account for functional limitations in a way that lets site builders select what is needed for their clients or organization, or just individual situations they know their sites would be maintained under?</p>\n\n\n\n<p>What more could we do if part of the setup flow of WordPress was to select some bundle of potential add ons for neuro diversity, or colorblindness, or dyslexia, and more?</p>\n\n\n\n<p>It&#8217;s a really big question I have.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 5:26</p>\n\n\n\n<p>And I have to be really transparent here and share that my foundational understanding of accessibility and usability is 10 plus years old, and I learned it in the context of people in education, not software. So a lot of my questions about the future of accessibility and WordPress is the result of old knowledge exploring new spaces, which means they are a little untested. And I&#8217;m so grateful for the contributors who point out what the current research and thinking is, in this incredibly complex field.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 6:00</p>\n\n\n\n<p>I normally like to wrap up the briefing with a tidy takeaway, but this particular topic doesn&#8217;t really lend itself to that. So I&#8217;ll leave you with this. I really believe in WordPress&#8217; mission to democratize publishing. And I, for one, will never stop learning about what gives people more access to the software, and what makes the software more usable, and especially how we can combine usability with accessibility in a way that puts form and function on a level playing field.</p>\n\n\n\n<p>[musical interlude]</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 6:40</p>\n\n\n\n<p>And now, that brings us to our small list of big things.</p>\n\n\n\n<p>Thing one, it&#8217;s that time of year where many of our community members take a short break to relax and refresh. I&#8217;ll be taking a bit of a break during the month of August, and so the WP Briefing will return again starting in September.</p>\n\n\n\n<p>And thing two, huge thanks to the production crew that helps me make this podcast every couple of weeks, but a special shout out to our editor Dustin Hartzler, who makes quick work of all of my rambling thoughts.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> 7:09</p>\n\n\n\n<p>And that is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in September.</p>\n\n\n\n<p>[contemporary outro music]</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11096\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Configuring Theme Design with theme.json\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2021/07/configuring-theme-design-with-theme-json/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Jul 2021 22:26:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11060\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"Starting in WordPress 5.8, a new tool — “theme.json” — is available to use in your theme. Maybe you’re hearing about it for the first time, or maybe you’re testing and developing themes with it already. Either way, I&#8217;m glad you&#8217;re here because it&#8217;s an exciting time for WordPress themes. This post provides a quick introduction [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jeff Ong\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:21957:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"356\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?resize=632%2C356&#038;ssl=1\" alt=\"\" class=\"wp-image-11082\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?resize=1536%2C864&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?resize=2048%2C1152&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/07/themejson-1.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Starting in <a href=\"https://wordpress.org/news/2021/07/tatum/\">WordPress 5.8</a>, a new tool — “theme.json” — is available to use in your theme. Maybe you’re hearing about it for the first time, or maybe you’re testing and developing themes with it already. Either way, I&#8217;m glad you&#8217;re here because it&#8217;s an exciting time for WordPress themes.</p>\n\n\n\n<p>This post provides a quick introduction to this new framework, and describes what’s possible by sharing a few practical tips and examples.</p>\n\n\n\n<h2>What’s theme.json?</h2>\n\n\n\n<p>Technically, theme.json is just a file that lives at the top-level of a theme’s directory.&nbsp;</p>\n\n\n\n<p>Conceptually, it’s a major shift in how themes can be developed. Theme authors now have a centralized mechanism to tailor the WordPress experience for site authors and visitors. Theme.json provides theme authors fine-grained control over global styles, block styles, and the block editor settings.</p>\n\n\n\n<p>By providing these settings and controls in a single file, theme.json provides a powerful framework that brings together many aspects of theme design and development. And as the block editor matures and adds more features, theme.json will shine as the backbone for themes and the editor to work <em>together</em> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f4aa.png\" alt=\"💪\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />. </p>\n\n\n\n<h2>Why Use it?</h2>\n\n\n\n<p>It’s the future! But if you’re like me, you might need something more tangible to be convinced. Here are a few reasons why you might use theme.json today:</p>\n\n\n\n<ul><li>Control editor settings like color, typography, spacing, and layout, and consolidate where these settings are managed.</li><li>Guarantee that styles apply correctly to blocks and elements across your site.</li><li>Reduce the amount of boilerplate CSS a theme used to provide. Theme.json won&#8217;t replace your stylesheet completely — there will be instances where CSS is needed to give your theme that extra flare (transitions, animations, etc.). But it can greatly reduce the base CSS needed from the theme.</li></ul>\n\n\n\n<h2>How do I use it?</h2>\n\n\n\n<p>The rest of this post demonstrates a few theme.json configurations you can try out. The examples use the tt1-blocks<a href=\"https://github.com/WordPress/theme-experiments/blob/master/tt1-blocks/theme.json\"> theme.json</a> — <a href=\"https://wordpress.org/themes/tt1-blocks/\">the block-based version of this year’s default theme</a>. </p>\n\n\n\n<p>If you&#8217;re starting with an existing theme, you might try copying a theme.json from the <a href=\"https://github.com/WordPress/theme-experiments/\">WordPress/theme-experiments repository</a> (for example, <a href=\"https://github.com/WordPress/theme-experiments/blob/master/fse-tutorial/theme.json\">the fse-tutorial theme</a> by <a href=\"https://profiles.wordpress.org/poena/\">@poena</a>) and adding it to the root of your theme’s directory.</p>\n\n\n\n<h3><strong>Change the typography settings of your site globally</strong></h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\">\n&quot;settings&quot;: {\n	&quot;typography&quot;: {\n		&quot;fontSize&quot;: &quot;30px&quot;,\n		...\n</pre></div>\n\n\n<p>Making the change above in theme.json would result in the following updates to your theme&#8217;s body typography styles (before and after): </p>\n\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"398\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?resize=632%2C398&#038;ssl=1\" alt=\"\" data-id=\"11062\" data-full-url=\"https://wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png\" data-link=\"https://wordpress.org/news/?attachment_id=11062\" class=\"wp-image-11062\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?resize=1024%2C645&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?resize=300%2C189&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?resize=768%2C484&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?resize=1536%2C968&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?resize=2048%2C1291&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.06.07-AM.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"398\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?resize=632%2C398&#038;ssl=1\" alt=\"\" data-id=\"11061\" data-full-url=\"https://wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png\" data-link=\"https://wordpress.org/news/?attachment_id=11061\" class=\"wp-image-11061\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?resize=1024%2C645&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?resize=300%2C189&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?resize=768%2C484&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?resize=1536%2C968&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?resize=2048%2C1291&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.05.40-AM.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li></ul></figure>\n\n\n\n<h3><strong>Changing the base color settings of your site globally</strong></h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\">\n&quot;styles&quot;: {\n	&quot;color&quot;: {\n		&quot;background&quot;: &quot;#ffc0cb&quot;,\n		&quot;text&quot;: &quot;#6A1515&quot;\n	},\n	...\n}\n</pre></div>\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><a href=\"https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"398\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?resize=632%2C398&#038;ssl=1\" alt=\"\" data-id=\"11063\" data-full-url=\"https://wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png\" data-link=\"https://wordpress.org/news/?attachment_id=11063\" class=\"wp-image-11063\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?resize=1024%2C645&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?resize=300%2C189&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?resize=768%2C484&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?resize=1536%2C968&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?resize=2048%2C1291&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.10.03-AM.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"398\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?resize=632%2C398&#038;ssl=1\" alt=\"\" data-id=\"11064\" data-full-url=\"https://wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png\" data-link=\"https://wordpress.org/news/?attachment_id=11064\" class=\"wp-image-11064\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?resize=1024%2C645&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?resize=300%2C189&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?resize=768%2C484&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?resize=1536%2C968&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?resize=2048%2C1291&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/07/Screen-Shot-2021-07-23-at-11.08.54-AM.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li></ul></figure>\n\n\n\n<h3><strong><strong>Changing spacing / padding settings on specific blocks</strong></strong></h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\">\n&quot;styles&quot;: {\n	&quot;blocks&quot;: {\n		&quot;core/code&quot;: {\n			&quot;spacing&quot;: {\n				&quot;padding&quot;: {\n					&quot;top&quot;: &quot;3em&quot;,\n					&quot;bottom&quot;: &quot;3em&quot;,\n					&quot;left&quot;: &quot;3em&quot;,\n					&quot;right&quot;: &quot;3em&quot;\n				}\n			}\n		}\n	}\n}\n\n</pre></div>\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><a href=\"https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"356\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?resize=632%2C356&#038;ssl=1\" alt=\"\" data-id=\"11065\" data-full-url=\"https://wordpress.org/news/files/2021/07/code-padding-original.png\" data-link=\"https://wordpress.org/news/?attachment_id=11065\" class=\"wp-image-11065\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?resize=1536%2C864&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?w=1600&amp;ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2021/07/code-padding-original.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/07/code-padding-edited.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"356\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/07/code-padding-edited-1024x576.png?resize=632%2C356&#038;ssl=1\" alt=\"\" data-id=\"11066\" data-full-url=\"https://wordpress.org/news/files/2021/07/code-padding-edited.png\" data-link=\"https://wordpress.org/news/?attachment_id=11066\" class=\"wp-image-11066\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/code-padding-edited.png?resize=1024%2C576&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/code-padding-edited.png?resize=300%2C169&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/code-padding-edited.png?resize=768%2C432&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/code-padding-edited.png?resize=1536%2C864&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/07/code-padding-edited.png?w=1600&amp;ssl=1 1600w, https://i1.wp.com/wordpress.org/news/files/2021/07/code-padding-edited.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li></ul></figure>\n\n\n\n<h3><strong><strong>Set a custom color palette in the editor for specific blocks like a button </strong></strong></h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\">\n&quot;settings&quot;: {\n    &quot;blocks&quot;: {\n		&quot;core/button&quot;: {\n			&quot;color&quot;: {\n				&quot;palette&quot;: &#91; \n					{\n						&quot;name&quot;: &quot;Maroon&quot;,\n						&quot;color&quot;: &quot;#6A1515&quot;,\n						&quot;slug&quot;: &quot;maroon&quot;\n					},\n					{\n						&quot;name&quot;: &quot;Strawberry Ice Cream&quot;,\n						&quot;color&quot;: &quot;#FFC0CB&quot;,\n						&quot;slug&quot;: &quot;strawberry-ice-cream&quot;\n					}\n				]\n			}\n		}\n	}\n}\n</pre></div>\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><a href=\"https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"444\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?resize=632%2C444&#038;ssl=1\" alt=\"\" data-id=\"11069\" data-full-url=\"https://wordpress.org/news/files/2021/07/button-all-colors.png\" data-link=\"https://wordpress.org/news/?attachment_id=11069\" class=\"wp-image-11069\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?resize=1024%2C719&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?resize=300%2C211&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?resize=768%2C539&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?resize=1536%2C1079&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?resize=2048%2C1438&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/07/button-all-colors.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"444\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?resize=632%2C444&#038;ssl=1\" alt=\"\" data-id=\"11070\" data-full-url=\"https://wordpress.org/news/files/2021/07/buttons-custom-palette.png\" data-link=\"https://wordpress.org/news/?attachment_id=11070\" class=\"wp-image-11070\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?resize=1024%2C719&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?resize=300%2C211&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?resize=768%2C539&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?resize=1536%2C1079&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?resize=2048%2C1438&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/07/buttons-custom-palette.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li></ul></figure>\n\n\n\n<h3><strong><strong>Enable and disable typography controls</strong></strong></h3>\n\n\n\n<p>In the following example, the ability to supply a custom font size and line height for all heading blocks is disabled:</p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\">\n	&quot;settings&quot;: {\n		&quot;blocks&quot;: {\n			&quot;core/heading&quot;: {\n				&quot;typography&quot;: {\n					&quot;customFontSize&quot;: false,\n					&quot;customLineHeight&quot;: false\n				}\n			}\n		}\n	}\n</pre></div>\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"444\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?resize=632%2C444&#038;ssl=1\" alt=\"\" data-id=\"11071\" data-full-url=\"https://wordpress.org/news/files/2021/07/heading-all-options.png\" data-link=\"https://wordpress.org/news/?attachment_id=11071\" class=\"wp-image-11071\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?resize=1024%2C719&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?resize=300%2C211&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?resize=768%2C539&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?resize=1536%2C1079&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?resize=2048%2C1438&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/07/heading-all-options.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li><li class=\"blocks-gallery-item\"><figure><a href=\"https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"444\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?resize=632%2C444&#038;ssl=1\" alt=\"\" data-id=\"11072\" data-full-url=\"https://wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png\" data-link=\"https://wordpress.org/news/?attachment_id=11072\" class=\"wp-image-11072\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?resize=1024%2C719&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?resize=300%2C211&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?resize=768%2C539&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?resize=1536%2C1079&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?resize=2048%2C1438&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/07/heading-no-line-height-custom-size.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure></li></ul></figure>\n\n\n\n<h2>What&#8217;s Next?</h2>\n\n\n\n<p>I hope this gives you a sense of what&#8217;s possible and where themes are going. The above examples just scratch the surface of what kinds of theme design configurations are possible, and I’m very excited to see what theme authors create.</p>\n\n\n\n<p>If you&#8217;re interested in learning more, <a href=\"https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/\">here&#8217;s the developer note on theme.json</a>, and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/\">here&#8217;s the documentation for theme.json</a> in the handbook.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><em><strong>Thanks to <a href=\"https://profiles.wordpress.org/kjellr/\">@kjellr</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">@</a></strong></em><strong><em><a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/priethor/\">@priethor</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">@annezazu</a> for helping with and peer-reviewing this post.</em></strong></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11060\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress 5.8 Tatum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2021/07/tatum/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Jul 2021 17:43:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10976\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:277:\"Introducing 5.8 “Tatum”, our latest and greatest release, named in honor of the legendary jazz pianist Art Tatum. This release includes an all new widget editor powered by blocks, major technical tools for building block themes, as well as newly streamlined workflow tools.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:55730:\"\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"422\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/07/5x8-Album-1.jpg?resize=632%2C422&#038;ssl=1\" alt=\"\" class=\"wp-image-11042\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Introducing 5.8 “Tatum”, our latest and greatest release now available for&nbsp;<a href=\"https://wordpress.org/download/\">download</a>&nbsp;or update in your dashboard. Named in honor of Art Tatum, the legendary Jazz pianist. His formidable technique and willingness to push boundaries inspired musicians and changed what people thought could be done.&nbsp;</p>\n\n\n\n<p>So fire up your music service of choice and enjoy Tatum’s famous recordings of ‘Tea for Two’, ‘Tiger Rag’, ‘Begin the Beguine’, and ‘Night and Day’ as you read about what the latest WordPress version brings to you.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2 class=\"has-text-align-center\">Three Essential Powerhouses</h2>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"474\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/07/about-widgets-blocks.png?resize=632%2C474&#038;ssl=1\" alt=\"\" data-id=\"10985\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-widgets-blocks.png\" data-link=\"https://wordpress.org/news/?attachment_id=10985\" class=\"wp-image-10985\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/about-widgets-blocks.png?resize=1024%2C768&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-widgets-blocks.png?resize=300%2C225&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-widgets-blocks.png?resize=768%2C576&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-widgets-blocks.png?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"501\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/about-query-loop.png?resize=632%2C501&#038;ssl=1\" alt=\"\" data-id=\"10986\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-query-loop.png\" data-link=\"https://wordpress.org/news/?attachment_id=10986\" class=\"wp-image-10986\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/about-query-loop.png?resize=1024%2C811&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-query-loop.png?resize=300%2C238&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-query-loop.png?resize=768%2C608&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-query-loop.png?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"411\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/about-template.png?resize=632%2C411&#038;ssl=1\" alt=\"\" data-id=\"10987\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-template.png\" data-link=\"https://wordpress.org/news/?attachment_id=10987\" class=\"wp-image-10987\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/about-template.png?resize=1024%2C666&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-template.png?resize=300%2C195&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-template.png?resize=768%2C499&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-template.png?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3>Manage Widgets with Blocks</h3>\n\n\n\n<p>After months of hard work, the power of blocks has come to both the Block Widgets Editor and the Customizer. Now you can add blocks both in widget areas across your site and with live preview through the Customizer. This opens up new possibilities to create content: from no-code mini layouts to the vast library of core and third-party blocks. For our developers, you can find more details in the&nbsp;<a href=\"https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/\">Widgets dev note</a>.</p>\n\n\n\n<h3>Display Posts with New Blocks and Patterns</h3>\n\n\n\n<p>The Query Loop Block makes it possible to display posts based on specified parameters; like a PHP loop without the code. Easily display posts from a specific category, to do things like create a portfolio or a page full of your favorite recipes. Think of it as a more complex and powerful Latest Posts Block! Plus, pattern suggestions make it easier than ever to create a list of posts with the design you want.</p>\n\n\n\n<h3>Edit the Templates Around Posts</h3>\n\n\n\n<p>You can use the familiar block editor to edit templates that hold your content—simply activate a block theme or a theme that has opted in for this feature. Switch from editing your posts to editing your pages and back again, all while using a familiar block editor. There are more than 20 new blocks available within compatible themes. Read more about this feature and how to experiment with it in the release notes.</p>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">Three Workflow Helpers</h2>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"496\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/07/about-list-view.png?resize=632%2C496&#038;ssl=1\" alt=\"\" data-id=\"10988\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-list-view.png\" data-link=\"https://wordpress.org/news/?attachment_id=10988\" class=\"wp-image-10988\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/about-list-view.png?resize=1024%2C803&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-list-view.png?resize=300%2C235&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-list-view.png?resize=768%2C602&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-list-view.png?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"343\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/07/about-pattern-suggestions.png?resize=632%2C343&#038;ssl=1\" alt=\"\" data-id=\"10989\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-pattern-suggestions.png\" data-link=\"https://wordpress.org/news/?attachment_id=10989\" class=\"wp-image-10989\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/07/about-pattern-suggestions.png?resize=1024%2C555&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-pattern-suggestions.png?resize=300%2C163&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-pattern-suggestions.png?resize=768%2C416&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/07/about-pattern-suggestions.png?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"517\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/07/about-duotone.png?resize=632%2C517&#038;ssl=1\" alt=\"\" data-id=\"10990\" data-full-url=\"https://wordpress.org/news/files/2021/07/about-duotone.png\" data-link=\"https://wordpress.org/news/?attachment_id=10990\" class=\"wp-image-10990\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/07/about-duotone.png?resize=1024%2C837&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/07/about-duotone.png?resize=300%2C245&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/07/about-duotone.png?resize=768%2C628&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/07/about-duotone.png?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3>Overview of the Page Structure</h3>\n\n\n\n<p>Sometimes you need a simple landing page, but sometimes you need something a little more robust. As blocks increase, patterns emerge, and content creation gets easier, new solutions are needed to make complex content easy to navigate. List View is the best way to jump between layers of content and nested blocks. Since the List View gives you an overview of all the blocks in your content, you can now navigate quickly to the precise block you need. Ready to focus completely on your content? Toggle it on or off to suit your workflow.</p>\n\n\n\n<h3>Suggested Patterns for Blocks</h3>\n\n\n\n<p>Starting in this release the Pattern Transformations tool will suggest block patterns based on the block you are using. Right now, you can give it a try in the Query Block and Social Icon Block. As more patterns are added, you will be able to get inspiration for how to style your site without ever leaving the editor!</p>\n\n\n\n<h3>Style and Colorize Images</h3>\n\n\n\n<p>Colorize your image and cover blocks with duotone filters! Duotone can add a pop of color to your designs and style your images (or videos in the cover block) to integrate well with your themes. You can think of the duotone effect as a black and white filter, but instead of the shadows being black and the highlights being white, you pick your own colors for the shadows and highlights. There’s more to learn about how it works in the documentation.</p>\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">For Developers to Explore</h2>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"378\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?resize=632%2C378&#038;ssl=1\" alt=\"\" class=\"wp-image-10992\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?resize=1024%2C613&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?resize=300%2C179&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?resize=768%2C459&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?resize=1536%2C919&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?resize=2048%2C1225&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/07/about-theme-json-2x.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Theme.json</h3>\n\n\n\n<p>Introducing the Global Styles and Global Settings APIs: control the editor settings, available customization tools, and style blocks using a theme.json file in the active theme. This configuration file enables or disables features and sets default styles for both a website and blocks. If you build themes, you can experiment with this early iteration of a useful new feature. For more about what is currently available and how it works,&nbsp;<a href=\"https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/\">check out this dev note</a>.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3>Dropping support for IE11</h3>\n\n\n\n<p>Support for Internet Explorer 11 has been dropped as of this release. This means you may have issues managing your site that will not be fixed in the future. If you are currently using IE11, it is strongly recommended that you&nbsp;<a href=\"https://browsehappy.com/\">switch to a more modern browser</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3>Adding support for WebP</h3>\n\n\n\n<p>WebP is a modern image format that provides improved lossless and lossy compression for images on the web. WebP images are around 30% smaller on average than their JPEG or PNG equivalents, resulting in sites that are faster and use less bandwidth.</p>\n</div>\n</div>\n\n\n\n<h3>Adding Additional Block Supports</h3>\n\n\n\n<p>Expanding on previously implemented block supports in WordPress&nbsp;<a href=\"https://make.wordpress.org/core/2020/11/18/block-supports-in-wordpress-5-6/\">5.6</a>&nbsp;and&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/24/changes-to-block-editor-components-and-blocks/\">5.7</a>, WordPress 5.8 introduces several new block support flags and new options to customize your registered blocks. More information is available in the&nbsp;<a href=\"https://make.wordpress.org/core/2021/06/25/block-supports-api-updates-for-wordpress-5-8/\">block supports dev note</a>.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Check the Field Guide for more!</h3>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of:&nbsp;<a href=\"https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/\">WordPress 5.8 Field Guide.</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.8 release was led by <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, and supported by this highly enthusiastic release squad:</p>\n\n\n\n<ul><li><strong>Release Co-Coordinator:</strong>&nbsp;Jeffrey Paul (<a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>)</li><li><strong>Release Co-Coordinator:</strong>&nbsp;Jonathan Desrosiers (<a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>)</li><li><strong>Editor Tech Lead:</strong>&nbsp;Riad Benguella (<a href=\'https://profiles.wordpress.org/youknowriad/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>youknowriad</a>)</li><li><strong>Marketing and Communications Lead:</strong> Josepha Haden Chomphosy (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>)</li><li><strong>Documentation Lead:</strong> Milana Cap (<a href=\'https://profiles.wordpress.org/milana_cap/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>milana_cap</a>)</li><li><strong>Test Lead:</strong>&nbsp;Piotrek Boniu (<a href=\'https://profiles.wordpress.org/boniu91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>boniu91</a>)</li><li><strong>Support Lead:&nbsp;</strong>Mary Job (<a href=\'https://profiles.wordpress.org/mariaojob/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mariaojob</a>)</li></ul>\n\n\n\n<p>This release is the reflection of the hard work of 530 generous volunteer contributors. Collaboration occurred on over <a href=\"https://core.trac.wordpress.org/query?milestone=5.8&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">320 tickets on Trac</a> and over <a href=\"https://github.com/wordpress/gutenberg/compare/v10.0.0...v10.7.0\">1,500 pull requests on GitHub</a>.</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/5ubliminal/\">5ubliminal</a>, <a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/9primus/\">9primus</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/achbed/\">achbed</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"https://profiles.wordpress.org/aleperez92/\">Alejandro Perez</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/amarinediary/\">amarinediary</a>, <a href=\"https://profiles.wordpress.org/gadgetroid/\">Amogh Harish</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">Andr&#233;</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/anotia/\">anotia</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apokalyptik/\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/lephleg/\">Argyris Margaritis</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ariskataoka/\">ariskataoka</a>, <a href=\"https://profiles.wordpress.org/arkrs/\">arkrs</a>, <a href=\"https://profiles.wordpress.org/aruphi/\">Armand</a>, <a href=\"https://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>, <a href=\"https://profiles.wordpress.org/arunsathiya/\">Arun</a>, <a href=\"https://profiles.wordpress.org/aspexi/\">Aspexi</a>, <a href=\"https://profiles.wordpress.org/atjn/\">atjn</a>, <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a>, <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bmcculley/\">bmcculley</a>, <a href=\"https://profiles.wordpress.org/boblinthorst/\">Bob Linthorst</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bogdanpreda/\">Bogdan Preda</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt/\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brettshumaker/\">Brett Shumaker</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carlalexander/\">Carl Alexander</a>, <a href=\"https://profiles.wordpress.org/carlomanf/\">carlomanf</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia Prim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/caseymilne/\">Casey Milne</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a>, <a href=\"https://profiles.wordpress.org/nhuja/\">Chandra M</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/ryno267/\">Chuck Reynolds</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/design_dolphin/\">CodePoet</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Engle Robertson</a>, <a href=\"https://profiles.wordpress.org/crazycoders/\">crazycoders</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">critterverse</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">D&#225;vid Szab&#243;</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/damonganto/\">damonganto</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Dani Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/vetyst/\">Danny</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/devle/\">devfle</a>, <a href=\"https://profiles.wordpress.org/devrekli/\">devrekli</a>, <a href=\"https://profiles.wordpress.org/dhruvkb/\">dhruvkb</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dingdang/\">dingdang</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/djbu/\">djbu</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/donnapep/\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/dpik/\">dpik</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/drebbitsweb/\">Dreb Bits</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/itsjusteileen/\">Eileen Violini</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/aliveic/\">Emil E</a>, <a href=\"https://profiles.wordpress.org/emarticor/\">Emilio Martinez</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/felixbaumgaertner/\">felixbaumgaertner</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/fijisunshine/\">fijisunshine</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frosso1/\">frosso1 (a11n)</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">Ganga Kafle</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gregorlove/\">gRegor Morrill</a>, <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm/\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">hedgefield</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/herrvigg/\">herrvigg</a>, <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/icopydoc/\">icopydoc</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/dragunoff/\">Ivaylo Draganov</a>, <a href=\"https://profiles.wordpress.org/wphound/\">Ivete Tecedor</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox/\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jamesbonham/\">James Bonham</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/pondermatic/\">James Richards</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/jamil95/\">jamil95</a>, <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a>, <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jeffikus/\">Jeffrey Pearce</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeremy80/\">jeremy80</a>, <a href=\"https://profiles.wordpress.org/jeroenreumkens/\">JeroenReumkens</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jillebehm/\">jillebehm</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/sephsekla/\">Joe Bailey-Roberts</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenstr&#246;m</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/bhwebworks/\">John Sundberg</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/dkampdesign/\">JoshuaDoshua</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/kaavyaiyer/\">kaavyaiyer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/klevyke/\">klevyke</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a>, <a href=\"https://profiles.wordpress.org/lakrisgubben/\">lakrisgubben</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/lewiscowles/\">LewisCowles</a>, <a href=\"https://profiles.wordpress.org/lifeforceinst/\">lifeforceinst</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/displaynone/\">Luis Sacrist&#225;n</a>, <a href=\"https://profiles.wordpress.org/infolu/\">Luiz Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/m0ze/\">m0ze</a>, <a href=\"https://profiles.wordpress.org/maedahbatool/\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mariaojob/\">Mary Job</a>, <a href=\"https://profiles.wordpress.org/marylauc/\">marylauc</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mblach/\">mblach</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/meloniq/\">meloniq</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mike_cowobo/\">Mike Martel</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/mkdgs/\">mkdgs</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/mohamedfaragallah/\">Mohammed Faragallah</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/m_uysl/\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nayanchamp7/\">Nazrul Islam Nayan</a>, <a href=\"https://profiles.wordpress.org/dway/\">nderambure</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/ninanmnm/\">ninanmnm</a>, <a href=\"https://profiles.wordpress.org/pianist787/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nvartolomei/\">nvartolomei</a>, <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"https://profiles.wordpress.org/olafklejnstrupjensen/\">olafklejnstrupjensen</a>, <a href=\"https://profiles.wordpress.org/olgabulat/\">Olga Bulat</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/oxyrealm/\">oxyrealm</a>, <a href=\"https://profiles.wordpress.org/ozh/\">Ozh</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/paaggeli/\">Panagiotis Angelidis</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/fantasy1125/\">Pascal Knecht</a>, <a href=\"https://profiles.wordpress.org/patkemper/\">Pat</a>, <a href=\"https://profiles.wordpress.org/patricklindsay/\">patricklindsay</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a>, <a href=\"https://profiles.wordpress.org/pavelvisualcomposer/\">Pavel I</a>, <a href=\"https://profiles.wordpress.org/mrpauloen/\">Paweł</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/phena109/\">phena109</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/strategio/\">Pierre SYLVESTRE</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/mordauk/\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Pirate Dunbar</a>, <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/pyronaur/\">pyronaur</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Galani</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/rkradadiya/\">Rajesh Radadiya</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rellect/\">Refael Iliaguyev</a>, <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reynhartono/\">reynhartono</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/rima1889/\">Rima Prajapati</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/robdxw/\">robdxw</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"https://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"https://profiles.wordpress.org/lev0/\">Roy</a>, <a href=\"https://profiles.wordpress.org/geekstreetwp/\">Russell Aaron</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a>, <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Sa&#353;a</a>, <a href=\"https://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"https://profiles.wordpress.org/sahilmepani/\">Sahil Mepani</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sasagar/\">SASAPIYO</a>, <a href=\"https://profiles.wordpress.org/satrancali/\">satrancali</a>, <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a>, <a href=\"https://profiles.wordpress.org/gmagicscott/\">Scott Lesovic</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scottconnerly/\">scottconnerly</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/sean212/\">Sean Fisher</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebbb/\">sebbb</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/silb3r/\">silb3r</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/spikeuk1/\">spikeuk1</a>, <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/khromov/\">Stanislav Khromov</a>, <a href=\"https://profiles.wordpress.org/deustron/\">Stefan H&#252;sges</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell/\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sumaiyasiddika/\">Sumaiya Siddika</a>, <a href=\"https://profiles.wordpress.org/sumanm/\">Suman</a>, <a href=\"https://profiles.wordpress.org/5um17/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/sushmak/\">sushmak</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tamlyn/\">tamlyn</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a>, <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kr&#228;ftner</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\">Thomas Vitale</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmdk/\">tmdk</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/trejder/\">trejder</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wangql/\">wangql</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, <a href=\"https://profiles.wordpress.org/webdragon/\">WebDragon</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/xavivars/\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"https://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">Yuliyan Slavchev</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zackkrida/\">Zack Krida</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zkancs/\">zkancs</a>, and <a href=\"https://profiles.wordpress.org/sunxiyuan/\">孙锡源</a>.\n\n\n\n<p></p>\n\n\n\n<p>In addition to these contributors, many thanks to all of the community volunteers who contribute in the&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time, or they’ve been around since the first release all the way back in 2003. These releases are as successful as they are because of their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who help make WordPress available in over 200 languages for every release. 80 languages have translated 80% or more WordPress 5.8 and our community translators are hard at work ensuring more languages are on their way. If contributing to WordPress appeals to you, it’s easy to learn more. Check out&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/\">Make WordPress</a>&nbsp;or the&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10976\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WP Briefing: Episode 13: Cherishing WordPress Diversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2021/07/episode-13-cherishing-wordpress-diversity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Jul 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10949\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:357:\"In this episode, Josepha Haden Chomphosy discusses the importance of Diversity, Equity, and Inclusion to the fabric of the WordPress project and how we can move from a place of welcoming it to cherishing it. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/07/WP-Briefing-013.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14890:\"\n<p>In this episode, Josepha Haden Chomphosy discusses the importance of Diversity, Equity, and Inclusion to the fabric of the WordPress project and how we can move from a place of welcoming it to cherishing it.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></p>\n\n\n\n<p>Logo: <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></p>\n\n\n\n<p>Production: <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></p>\n\n\n\n<p>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\">Diverse Speaker Training Workshop</a></p>\n\n\n\n<p><a href=\"https://josepha.blog/2020/12/23/a-wordpress-dinner-party/\">A WordPress Dinner Party</a></p>\n\n\n\n<p><a href=\"https://josepha.blog/2018/11/06/the-burden-of-proof/\">The Burden of Proof</a></p>\n\n\n\n<p><a href=\"https://josepha.blog/2021/03/05/leading-at-any-level/\">Leadership At Any Level</a></p>\n\n\n\n<p><a href=\"https://josepha.blog/2019/03/02/building-a-culture-of-safety/\">Building a Culture of Safety</a></p>\n\n\n\n<p><a href=\"https://josepha.blog/2020/03/27/leadership-basics-ethics-in-communication/\">Leadership Basics: Ethics in Communication</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/support/wordpress-version/version-5-6/\">WordPress 5.6</a></p>\n\n\n\n<p>Bonus resource: <a href=\"https://allienimmons.com/how-to-be-a-wordpress-ally/\">How to Be a WordPress Ally</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10949\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. And before we get started, I have to be honest with you all, this episode and the next one have made me feel really anxious. This one is about Diversity, Equity, and Inclusion in open source, and especially in WordPress. And the next one is about accessibility in WordPress. And I feel like there&#8217;s just so much to do, and we don&#8217;t do enough, but we do what we can. And still, we will never be done with that work. And if you don&#8217;t know what I mean by Diversity, Equity, and Inclusion, you can kind of think of it this way. Diversity is bringing in people with different viewpoints and lived experiences. Equity is making sure everyone has what they need to get a fair chance of success, which is different from equality. And Inclusion is making sure that the environment is built to not only tolerate diverse groups but to celebrate them as well. So remember this as you listen to what I have to say here. We are never where we want to be in either of those spaces. But that shouldn&#8217;t stop us from looking at the things we have done to get us in the right direction. All right. Here we go.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:54</p>\n\n\n\n<p>I say a lot that we are a project that serves a majority collection of minority voices. WordPress is global in reach and open source in nature. And you would assume that what allows the software to be used by anyone would also enable it to be built by anyone. After all, your location doesn&#8217;t matter, and who employs you also doesn&#8217;t matter. And your relative social standing certainly shouldn&#8217;t matter. As long as you can communicate with the others contributing to the project, there should be no obstacle to your participation. The mission of the WordPress project is to democratize publishing, right? It&#8217;s to get the ability to have a website tap into passive income on your web presence. I mean, the job is to level the playing field for everyone. However, it&#8217;s my experience that bringing in new voices takes a lot of proactive work on behalf of leaders and contributors. It&#8217;s not enough to say, &#8220;Hey, I&#8217;m having a party,&#8221; you also have to say, &#8220;I&#8217;m having a party, and I&#8217;d like you to be there.&#8221; It&#8217;s not enough to think people will make their own space at this table. You have to make sure that you have table settings for everyone. And even beyond the basics of directing people to you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:12</p>\n\n\n\n<p>And on toward the next steps, you have to be honest about the fact that open source contribution requires a fair amount of privilege. By privilege, I mean the luxury of extra time or extra funding or just an understanding employer. WordPress supports 41% of the web. I think it&#8217;s 42% of the web right now. But less than 1% of people who use WordPress show up to help maintain it. And that 1% that does show up skews toward people who already have a pretty high level of representation and technology. And so, when you look at who is building it versus who is using it, it doesn&#8217;t always match. And since what we build so frequently reflects who we are, sometimes what we build doesn&#8217;t match the needs of the people who are using what we have.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:10</p>\n\n\n\n<p>So what has WordPress done to be proactive on the question of Diversity, Equity, and Inclusion? There are quite a few unseen things that have gone into this over the years and a few pretty visible things. This is a very long list. And it has a whole lot of just reference material. And so the show notes today will come in handy for people, and there will be just a laundry list of linked resources for everyone.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:39</p>\n\n\n\n<p>But the first thing that WordPress has done is that we have accepted the burden of proof. I&#8217;m going to share a post about this in the show notes. That means we accept that it&#8217;s not the job of underrepresented folks to figure out if they are welcome. It&#8217;s up to us to make it clear that they are. So, there are three big little things that the community has done over the years. One is that many teams open their text-based meetings with an explanation of what is done in the meeting, who comes to the meetings, where to find help if you&#8217;re lost in the meeting, and for teams that have a specific type of requests that comes into those channels that aren&#8217;t handled in those channels. They also will share where people can go to get those requests taken care of. Many teams have also updated their team handbooks to have good beginner docs, limited use of inside jokes or jargon, and good first bugs. And also, there is a code of conduct in the community declaring that everyone is welcome and clarifies what to do if you see folks being unwelcoming.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:51</p>\n\n\n\n<p>A second big thing that folks in the WordPress community have done is written down what was unwritten. Having things clearly documented unlocks institutional knowledge that you&#8217;d otherwise have to know someone to get. Clarity and process and the structure help anyone engage with your organization, not just the people who have extra time to figure things out. What that looks like in the WordPress project is that many teams have documented their workflows and their working spaces and just their general team norms. Many teams have also started defining what it means to be a team rep and holding open processes to choose those team reps. Many other community leaders and I have written down countless unspoken rules, guidelines, and philosophical underpinnings so that people don&#8217;t have to guess what we&#8217;re doing or why we&#8217;re doing things, or where we want to do them.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:46</p>\n\n\n\n<p>And the more visible thing that the WordPress project has been doing is that we found ways to invite people in, and they&#8217;re not failsafe; they’re not foolproof, but it is certainly a step in the right direction. The first one is an ongoing, diverse speaker training initiative. And I&#8217;ll include a link to that in the show notes as well. It is run by Jill Binder and a fantastic group of contributors that collaborate with her. And I really have loved watching that particular program grow and flourish and help WordPress make a difference where we absolutely can.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:27</p>\n\n\n\n<p>The second thing that was pretty visible about how we invited people in was at the end of 2020, and we had an all-women and nonbinary release squad for our biggest release of the year; WordPress 5.6. I had a group of probably 70 women and nonbinary identifying folx who joined in the process and joined in learning more about the process. Some of them have continued in the project. Others have stepped away for various reasons. But all of them are welcome to return. And I encourage everyone to return to contribution when time and resources make that possible for you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:09</p>\n\n\n\n<p>And then the third thing that we&#8217;ve done, which I have talked about a lot, is the revival of the testing and triage practices. That has been work that&#8217;s been ongoing for a number of years. And it happens across multiple teams. It is not always immediately clear to people why the testing work. And the triage work is identifiable for me as a way to invite people into this process. And so I&#8217;ll be briefly clear about it right now. So testing as a practice brings in the users that otherwise don&#8217;t have a lot of spare time and that extra privilege to like, figure out what&#8217;s going on with WordPress, and contribute their own fixes to problems. They can give back to this project by being co-developers with us, co-creators with our entire process of making WordPress real and usable for the largest number of people that we can because we now support 42% of the web. And then, the triage practice invites in a diverse voice of people. Because you don&#8217;t necessarily always need to know everything about a project to help with triage. And when you&#8217;re helping with triage, you get active learning through participating in the process. But you also get passive learning from the people who already know huge amounts about the project and the process and everything that goes into it. And so it&#8217;s a low key low stress way to get your feet wet and start building that knowledge that sometimes is hard to come by unless you are actively working in it. So the testing practices, the triage practices, I really to the core of my being believe that those are active and ongoing ways for us to invite people who otherwise wouldn&#8217;t have a chance to get their voices heard in an open source project. And y&#8217;all, as I said at the start, y’all, there&#8217;s nothing about this list that I just shared, which makes me feel like our work on this is done. Just like any muscle, you don&#8217;t fight to peak fitness, and then hit the big stop button on time and say, &#8220;Now, I never have to work out again.&#8221; If we did, the world would be a very different place probably. But it does then lead us to the next steps for fostering a community culture that&#8217;s as broad as the people who use this software. If you believe in leadership at any level, as I do, there are a ton of things that you can do right now. But I&#8217;ll boil them down into three big chunks of things.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:54</p>\n\n\n\n<p>First, check your community area, or whatever community you want to apply this to, for things that need a little more proactive work. I will share a post called<em> Building A Culture of Safety</em> that will take you through a list of good first steps. And it is not as hard as it looks. When you say build a culture of safety, there are many really clear-cut minor changes that you can ask people to make and, in like, four or five different areas that can help your community be more welcoming and more open.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:30</p>\n\n\n\n<p>The second thing that you can do is know that small changes add up over time and commit to making those changes where you can. If you are elite at any level, you know that supporting people and processes is the responsibility of everyone in the group. And if you can make your own autonomous decisions and commit to making small changes that make a big difference over time, you will be part of that solution. And that is not specific to any one group that we have in our communities. You can be an ally for anyone, whether they look like you, whether they have your same experiences, or not. And sometimes, it&#8217;s as easy as just holding space for the people who haven&#8217;t had a chance to talk yet. And on the subject of holding space and the way that we communicate.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:22</p>\n\n\n\n<p>The third thing that I think is incredibly important is that you can take on as a foundational personal practice the concept of ethical communication. I&#8217;ll share a post about that as well in the show notes, but the core of it is that you have to know that what you say and don&#8217;t say what you do and don&#8217;t do has an impact on others and embrace that responsibility. All right, so you made it all the way through, and I am so proud of you. I&#8217;m sure you have questions about this. And I encourage you to share those. You can email them to me at wp briefing@wordpress.org.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>13:10</p>\n\n\n\n<p>This brings us to our small list of big things. I&#8217;ve got two things for you today. First and foremost, WordPress 5.8 gets released tomorrow. It&#8217;s a big release, and lots of people have been working on it. So get your update processes ready and keep an eye on wordpress.org/news for the announcement post. Second, and still pretty important, team reps have been working on their quarterly check-ins so that all other teams can get an idea of what&#8217;s happening around the WordPress office. Keep an eye out for that post on make.wordpress.org/updates. And that is your smallest of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host Joseph Hayden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10949\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.8 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/07/wordpress-5-8-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Jul 2021 01:09:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10933\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:303:\"The third release candidate for WordPress 5.8 is now available! WordPress 5.8 is slated for release on July 20, 2021, and we need your help to get there—if you have not tried 5.8 yet, now is the time! You can test the WordPress 5.8 release candidate 3 in any of these three ways: Install and [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Jeffrey Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3233:\"\n<p>The third release candidate for <a href=\"https://make.wordpress.org/core/5-8/\">WordPress 5.8</a> is now available! </p>\n\n\n\n<p>WordPress 5.8 is slated for release on <strong>July 20, 2021</strong>, and we need <em>your</em> help to get there—if you have not tried 5.8 yet, now is the time!</p>\n\n\n\n<p>You can test the WordPress 5.8 release candidate 3 in any of these three ways:</p>\n\n\n\n<ul><li>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (select the <code>Bleeding edge</code> channel and then <code>Beta/RC Only</code> stream)</li><li>Directly download the release candidate version <a href=\"https://wordpress.org/wordpress-5.8-RC3.zip\">(zip)</a></li><li>Use WP-CLI to test: <code>wp core update --version=5.8-RC3</code></li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta/RC releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.8 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the <code>readme</code> file to 5.8.  If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can work to solve them in time for the final release.</p>\n\n\n\n<p>For a more detailed breakdown of the changes included in WordPress 5.8, check out the <a href=\"https://wordpress.org/news/2021/06/wordpress-5-8-beta-1/\">WordPress 5.8 beta 1 post</a>.  The&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/\">WordPress 5.8 Field Guide</a>, which is particularly useful for developers, has all the info and further links to help you get comfortable with the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Can you speak and write in a language other than English? &nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you have found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We would love to hear from you!  If you are comfortable writing a reproducible bug report,&nbsp;<a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p class=\"has-text-align-right\"><strong><em>Props to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, and <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> for peer-reviewing!</em></strong></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Code is poetry<br>Jazz is improvisation<br>Both are forms of art<br><br></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.8 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/07/wordpress-5-8-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Jul 2021 01:12:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10912\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:305:\"The second release candidate for WordPress 5.8 is now available! 🎉 WordPress 5.8 is slated for release on July 20, 2021, and we need your help to get there—if you have not tried 5.8 yet, now is the time! You can test the WordPress 5.8 release candidate 2 in any of these three ways: Install [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Jeffrey Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3376:\"\n<p>The second release candidate for <a href=\"https://make.wordpress.org/core/5-8/\">WordPress 5.8</a> is now available! <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>WordPress 5.8 is slated for release on <strong>July 20, 2021</strong>, and we need <em>your</em> help to get there—if you have not tried 5.8 yet, now is the time!</p>\n\n\n\n<p>You can test the WordPress 5.8 release candidate 2 in any of these three ways:</p>\n\n\n\n<ul><li>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (select the <code>Bleeding edge</code> channel and then <code>Beta/RC Only</code> stream)</li><li>Directly download the release candidate version <a href=\"https://wordpress.org/wordpress-5.8-RC2.zip\">(zip)</a></li><li>Use WP-CLI to test: <code>wp core update --version=5.8-RC2</code></li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta/RC releases and gave feedback.  Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.8 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the <code>readme</code> file to 5.8.  If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>,&nbsp;so they can get ready for the final release.</p>\n\n\n\n<p>For a more detailed breakdown of the changes included in WordPress 5.8, check out the <a href=\"https://wordpress.org/news/2021/06/wordpress-5-8-beta-1/\">WordPress 5.8 beta 1 post</a>.  The&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/\">WordPress 5.8 Field Guide</a>, which is particularly useful for developers, has all the info and further links to help you get comfortable with the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Can you speak and write in a language other than English? &nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you have found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums.  We would love to hear from you!  If you are comfortable writing a reproducible bug report,&nbsp;<a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<p class=\"has-text-align-right\"><strong><em>Props to <a href=\'https://profiles.wordpress.org/lukecarbis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lukecarbis</a> for the haiku, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a> and <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> for peer reviewing!</em></strong></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Five-eight in two weeks<br>So test your plugins and themes<br>Update your readme</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10912\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WP Briefing: Episode 12: WordPress – In Person!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2021/07/episode-12-wordpress-in-person/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Jul 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10889\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"In this episode, Josepha Haden Chomphosy talks about WordPress &#8211; In Person! The WordPress events that provide the dark matter of connection that helps sustain the open source project. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor: Dustin Hartzler Logo: Beatriz Fialho [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/07/WP-Briefing-012.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13118:\"\n<p>In this episode, Josepha Haden Chomphosy talks about WordPress &#8211; In Person! The WordPress events that provide the dark matter of connection that helps sustain the open source project.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<p>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></p>\n\n\n\n<p>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></p>\n\n\n\n<p>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></p>\n\n\n\n<p>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2>References</h2>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Tragedy_of_the_commons\">The tragedy of the commons</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2021/06/wordpress-5-8-release-candidate/\">WordPress 5.8 Release Candidate announcement </a></p>\n\n\n\n<h2>Transcript </h2>\n\n\n\n<span id=\"more-10889\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:11</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:39</p>\n\n\n\n<p>Today we&#8217;re talking about one of my favorite parts of the project &#8211; WordPress events. The in-person component of the project is the dark matter that helps us build resilience and thrive as a group. A lot of what I&#8217;m going to share applies to every WordPress event, whether it&#8217;s a meetup or workshop, a contributor day, any other sort of format. But I&#8217;ll be focused on WordCamps. It&#8217;s been a while since we had any in-person WordCamps. Our last two were WordCamp Malaga in Spain and WordCamp Greenville in the US. But that hasn&#8217;t stopped anyone from gathering people together online. Which honestly makes a lot of sense for WordPress. Because there are many reasons we gather, the main three reasons are connecting, inspiring, and contributing. It&#8217;s true. It says so right in our documentation, &#8220;paper rustling.&#8221; All WordPress events should connect WordPress users, inspire people to do more with WordPress, and contribute to the WordPress project. As an aside, I&#8217;ll tell you that some groups also get to collaborate and educate in there, but connect, inspire, contribute. Those are the big three. And that&#8217;s what I&#8217;m talking about today. And if you subscribe to this podcast for the back office deep cuts, I&#8217;ll also have a few of those for you. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:57</p>\n\n\n\n<p>Alright, so first up, connect. WordCamps are generally annual-ish gatherings organized by local WordPress meetup groups. They&#8217;re not meant to be big or fancy. The definition of the minimum viable product for WordCamp is 50 people gathered all day to talk about WordPress. They are intentionally affordable to allow people from all walks of life to attend, meet, share and learn. This is made possible by donations and sponsorships from local businesses and larger businesses in the WordPress ecosystem. And this helps us get people connected to those in their community that works with or are sustained by WordPress. That connection feeds into the overall health of the global WordPress project. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:45</p>\n\n\n\n<p>Next up is inspire. WordCamps do not discriminate. They are open to any WordPress users, developers, designers, or other enthusiasts, regardless of their level of experience. And because of this, sessions generally span a variety of formats. So presentations or live demos to workshops or panels, any other format you can think of. But that also means that there are a variety of skill levels represented. There&#8217;s always content about how to use WordPress. That’s a given. But you can also count on content that inspires people to do more with their own dreams and aspirations. When I was still organizing WordCamps, my favorite thing was seeing people who came back year after year, putting into practice something that they learned the year before. It is that <em>Choose Your Own Adventure</em> aspect to WordCamps that lets people see the edge of their ideas and then expand that just a little bit further. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:42</p>\n\n\n\n<p>And finally, contribute. WordCamps often have a contribution component to them. Sometimes it&#8217;s just a talk telling you how you can get more involved in the WordPress project. But sometimes, it&#8217;s a whole contributor day. And those range in size from single focus, like everyone, will show up and learn how to review a theme or a focus from every team that we have, like at the big flagship events where we gather hundreds of people into a room just to contribute to WordPress and all of the teams that go with it. Getting started with contributing can be daunting, but it is also essential to avoid something called the Tragedy of the Commons, an economic concept. So I&#8217;ll share a link to that in the show notes below. But the most important thing, the most important thing to remember, is that WordPress is open source. And we asked people to help us keep this great tool running by giving back a little bit of their time if they have gotten any benefit from the WordPress project or CMS over the course of their careers.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:40</p>\n\n\n\n<p>So that&#8217;s it. The three big things you can get from a WordCamp. I know that I can&#8217;t wait to get back to them myself because while a lot of these things can still happen online and do, it&#8217;s really hard to replace the dark matter of in-person connections for open source projects. And since we&#8217;re talking dark matter anyway, let&#8217;s dig into it a little.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:01</p>\n\n\n\n<p>At the start of the section, I mentioned that WordCamps are local, locally organized, and people are encouraged to attend locally. But I am part of a group that ends up traveling to a lot of WordCamps. If you don&#8217;t know about the unseen work of WordPress, this raises eyebrows. So here is some clarification around the back office work that some of these traveling WordCampers often do. When I listed these out, there were about 20 different tasks, 20 different jobs, which was, frankly, a bit overwhelming when I listed them that way. So I&#8217;ve grouped them into kind of two genres, each with a group of current versus future types of work. So my two big buckets, big picture stuff, and then community stewardship.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:50</p>\n\n\n\n<p>The big picture stuff, our first big genre here, when you&#8217;re looking at current topics, current issues kind of information, when we&#8217;re working on big picture stuff, you get the clarification of the mission or vision of WordPress, the sharing of open source methods or processes that we use in the WordPress project, and also sometimes those goal-setting conversations that you have to have both because we have a bunch of teams and team reps, that have a lot of really great ideas about what can be done in their teams to help WordPress succeed. But then also, because when you are working, when you&#8217;re contributing to a single team in the project, it can sometimes be hard to know how your work relates to the overall goals and visions of WordPress. And so that&#8217;s part of the work that gets done that I do there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:43</p>\n\n\n\n<p>And when you&#8217;re looking at future topics, future issues, the second part of this genre, that stuff like starting conversations or discussions around what the future holds for WordPress, and that&#8217;s the project as well as the technology or hearing from people about big things coming up for them. And any content that can support it, anything that I can provide to support those big things. It&#8217;s also a good time for me and others to identify trends based on what I see in presentations or what I hear from people at social functions. Really, it&#8217;s just a huge opportunity for information gathering to make sure that I know what everyone else in the project is trying to do and if they understand what the project is trying to do.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:32</p>\n\n\n\n<p>And then the second big genre of things that happen in that dark matter kind of work at WordCamps is what I call community stewardship—so taking care of the community itself for the project itself. And a lot of that work is actually incident response kind of work. So conflict resolution, mediation often happens at in-person events, but also uncovering the shared foundations, the shared understanding for upcoming changes. So a lot of really, in the weeds kind of change management work. And for me, it&#8217;s certainly doing my best as a cultural liaison when I do see that there has been some miscommunication or gathering context for the latest disagreement that people are having with me so that I can clarify anything that was misunderstood from what I said. And also a little bit of policy clarification, just explaining why we do things and the way we do them. So for community stewardship, that&#8217;s kind of the current stuff that we look at. And that I do when I&#8217;m traveling for WordCamps. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:36</p>\n\n\n\n<p>And then for the future tasks that we do with community stewardship in the project, that stuff like training, and that&#8217;s training team reps, community deputies, or new contributors like it&#8217;s, it&#8217;s not really one type of training, necessarily. But then also, all of the checking in with our organizers, team reps, volunteers, sponsors, everyone like that, to make sure that what we have in the project and what&#8217;s happening in the project, the tools that we have, the experience that contributors have while they are working here, and WordPress is good, and is what they need. We&#8217;ve got a lot of tools to get things done in WordPress, and we can always make them better. And so checking in with people to kind of see how those processes are, how the tools are making sure that I have an idea of where our holes are and what needs to be patched, and how we can patch them in the long run. So that&#8217;s all of the future planning kind of work and topic stuff, just you know, making sure that WordPress has what it needs to survive long into the future and long after I&#8217;m doing anything with it, and long after you&#8217;re doing anything with it either.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:56</p>\n\n\n\n<p>So, lots and lots of unseen work being done at our in-person events. But folks who keep a keen eye on the online global work of WordPress will probably recognize that a lot of that work is also done routinely on make.wordpress.org and within the making WordPress Slack. There’s just, I don&#8217;t know, there&#8217;s just something different about receiving information from a human being with a face rather than an avatar with a photo. So I guess at the end of the day, that means the dark matter that keeps open source together is really an issue of communication. And you&#8217;ll get no arguments for me there.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:44</p>\n\n\n\n<p>That brings us now to our small list of big things. And there&#8217;s really just one big thing. And that&#8217;s WordPress 5.8. We are about two weeks away from this big release; the community has been working tirelessly on it. And it&#8217;s shaping up to be one of the most tested releases that we&#8217;ve had in a long time. Myself, I&#8217;m grateful to see so much activity before the release. Since 5.8 and 5.9 releases represent such monumental shifts in our software, I&#8217;m incredibly grateful to see so much activity prior to the release, especially in the beta period. We&#8217;ve been testing everything for it feels like six or eight months, and we&#8217;re really starting to see the positive benefits of that. And I think that we, the WordPress community, should be really proud of everything that we&#8217;re going to ship in 2021. Okay, so that was less of a small list of big things and really like one big thing with a generous garnish of encouragement, but you deserve it. So thank you for tuning in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10889\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 20 Oct 2021 00:00:21 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 19 Oct 2021 21:47:11 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20201017055008\";}','no'),(1557,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1634731221','no'),(1558,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1634688021','no'),(1559,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1634731222','no');
INSERT INTO `wp9l_options` VALUES (1560,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Gutenberg Times: Gutenberg Adoption: Levels One through Five — Page Builder Summit, October 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://gutenbergtimes.com/?page_id=19119\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://gutenbergtimes.com/gutenberg-adoption-levels-1-5-page-builder-summit-october-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:446:\"<p class=\"has-large-font-size\">Thank you for attending my talk at the Page Builder Summit! 💕</p>\n\n\n\n<p>Follow-up from the Page Builder Summit October 18 &#8211; 22, 2021 and the presentation: &#8220;<strong>Customizing WordPress Block Editor for Client Projects</strong>&#8221; by Birgit Pauli-Haack </p>\n\n\n\n\n\n\n\n<p><em>Video is still rendering</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Oct 2021 15:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Build Notification Banners With ElmaStudio’s Latest Block Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/build-notification-banners-with-elmastudios-latest-block-plugin?utm_source=rss&utm_medium=rss&utm_campaign=build-notification-banners-with-elmastudios-latest-block-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5840:\"<p class=\"has-drop-cap\">A friend and I were discussing the need for more one-off block plugins earlier today. He had mentioned that WordPress has this powerful block search feature that rarely turns up anything useful. Most are part of collections that do not appear in the results. This was part of a more wide-ranging conversation that I am sure I will tackle on another day.</p>\n\n\n\n<p>However, it reminded me that I had a couple of ElmaStudio&rsquo;s block plugins sitting in the backlog along with some notes on them. The team released <a href=\"https://wordpress.org/plugins/aino-accordion-faq-block/\">Aino Accordion FAQ Block</a> and <a href=\"https://wordpress.org/plugins/aino-notification-block/\">Aino Notification Banner Block</a> three weeks ago. The latter piqued my interest more so than the former.</p>\n\n\n\n<img />Inserting an error notification.\n\n\n\n<p>The two-person team of Ellen Bauer and Manuel Esposito could have continued amassing a collection within their existing Aino Blocks plugin. Instead, they took a turn down the path few have traveled. They are now releasing single-purpose blocks.</p>\n\n\n\n<p>&ldquo;We plan to work on smaller add-on single blocks from now on as well,&rdquo; <a href=\"https://wptavern.com/a-second-look-at-elmastudios-aino-theme-and-companion-block-plugin#comment-392898\">said Bauer in the comments</a> on my last <a href=\"https://wptavern.com/a-second-look-at-elmastudios-aino-theme-and-companion-block-plugin\">review of their theme and block library</a>. &ldquo;Blocks that are needed for building more complex block page templates.&rdquo;</p>\n\n\n\n<p>Notification boxes are so commonplace that you almost wonder why they are not a part of core WordPress. Many block collection plugins bundle one or multiple, but it is hard to find a solid solution as a single block.</p>\n\n\n\n<p>The block has six statuses that users can select from:</p>\n\n\n\n<ul><li>Welcome</li><li>Info</li><li>Help</li><li>Success</li><li>Warning</li><li>Error</li></ul>\n\n\n\n<p>Each status has its own icon and default colors. The colors are customizable, but the icon itself is not. I am a fan of the decision because it means one less choice I must make. There is also an option to hide the icon and switch between fill and outline versions.</p>\n\n\n\n<img />Testing different notification statuses.\n\n\n\n<p>The block also displays a &ldquo;dismiss&rdquo; button for visitors to close the banner on the front end. The state is not saved, so if the visitor returns to the page, it will reappear. I would like to see an option to store the banner state in the browser in the future.</p>\n\n\n\n<p>I like the plugin for its simplicity. The default output works well enough for most themes, but it has enough options for users to customize it.</p>\n\n\n\n<p>The upcoming site editor is where the plugin could really shine. Of course, a user would need a block theme to use it there, such as ElmaStudio&rsquo;s <a href=\"https://wordpress.org/themes/aino/\">Aino</a>. The block offers a quick and easy way of plopping something like a sales banner across the top of the site.</p>\n\n\n\n<img />Adding a sales banner at the top of the site.\n\n\n\n<p>I do have a few nit-picks, of course. These are not <em>OMGBBQ</em> problems that make the plugin unusable. Instead, they are places where it could be improved.</p>\n\n\n\n<p>Because many themes use a top margin approach to vertical rhythm, it can disrupt the alignment of the icon and paragraph. The plugin should zero this out.</p>\n\n\n\n<p>If anyone else runs into this issue, the following CSS is a quick fix:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>.wp-block-ainoblocks-notification-block .content-wrapper p:first-of-type {\n    margin-top: 0;\n}</code></pre>\n\n\n\n<p>One of the downsides to the plugin is its custom system for borders and padding. From a development perspective, I prefer the plugin&rsquo;s system under the hood, which uses a curated set of values that keep a user from doing something really crazy. It offers a balance between flexibility and rational choices.</p>\n\n\n\n<img />The plugin&rsquo;s custom controls.\n\n\n\n<p>I have argued that most design controls should have such a system &mdash; the same one that is in place for font sizes and colors &mdash; <em>ad nauseum</em>. However, Gutenberg and core have moved in a different direction, preferring arbitrary user-defined values over a range of presets. Plugin authors should fall in line for the sake of users.</p>\n\n\n\n<p>As a user, I prefer consistency. I want the interface to be the same, regardless of whether I am dealing with a core or third-party block. Having to learn multiple methods to add padding or change a border creates unnecessary friction.</p>\n\n\n\n<p>The plugin&rsquo;s custom system also conflicts with default block styles that theme authors can define in their <code>theme.json</code> files. The standards set by WordPress create a bridge between plugins and themes that the platform has never had before. The more block developers follow it, the easier it is for theme designers to work within the system.</p>\n\n\n\n<p>There are other options. In the past week, the <a href=\"https://wordpress.org/plugins/alert-box-block/\">Alert Box Block</a> plugin landed in the directory. It provides far more icon options and more design controls in general. However, its UI is so different from the WordPress standard that I cannot imagine using it.</p>\n\n\n\n<p>When I talk about issues with Aino Notification Banner, it must be taken into context. I point out problems because I see its potential. I want the developers to continue iterating on it, improving what is already one of the best options out there. This is something that ElmaStudio has proven it can do with earlier projects, so I look forward to what the plugin looks like in the future. For now, it is a solid option for users who need to display notification boxes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Oct 2021 00:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Gutenberg Contributors Propose Renaming Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123800\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/gutenberg-contributors-propose-renaming-reusable-blocks?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-contributors-propose-renaming-reusable-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4106:\"<p>WordPress&rsquo; Reusable blocks may soon be <a href=\"https://github.com/WordPress/gutenberg/issues/34352\">getting re-named</a>, as the feature&rsquo;s distinct capabilities are less recognizable from its name following the introduction of patterns. </p>\n\n\n\n<p>When the Gutenberg project first took off, nobody had any idea how important patterns would become in the page building experience, or that they would be getting their own directory on WordPress.org. During a demo at WordCamp Europe 2021, Gutenberg lead architect Mat&iacute;as Ventura commented on how transformative patterns have been for making page design approachable for users.</p>\n\n\n\n<p>&ldquo;Perhaps it was a smaller part of the roadmap initially but it&rsquo;s becoming a centerpiece &ndash; especially because it allows&hellip;world class designers to provide a starting point for users and users get to learn design as they are interacting with themes,&rdquo; Ventura said.&nbsp;</p>\n\n\n\n<p>A year later, patterns have made their way to the forefront of theme design and development with an excitement that rivals <a href=\"https://wordpress.com/blog/2006/02/25/wordpress-widgets/\">the introduction of widgets</a> in WordPress&rsquo; earlier days. WordPress 5.9 will feature <a href=\"https://github.com/WordPress/gutenberg/issues/31153\">pattern insertion</a> directly from the Pattern Directory so users will be able to change their patterns as often as they like, without having to switch themes. Coming in Gutenberg 11.8, the pattern inserter will <a href=\"https://github.com/WordPress/gutenberg/pull/35115\">highlight featured patterns from the directory</a> in the initial view, instead of displaying the first alphabetical category. Contributors are also considering a path for allowing themes to <a href=\"https://github.com/WordPress/gutenberg/issues/35364\">surface specific patterns from the directory</a> instead of bundling them.</p>\n\n\n\n<p>In light of all this activity around Patterns, Reusable blocks are in need of a renaming that is more descriptive. </p>\n\n\n\n<p>&nbsp;&ldquo;In the end, patterns are also&nbsp;<em>reusable</em>&nbsp;pieces of design,&rdquo; Ventura said.</p>\n\n\n\n<p>&ldquo;Given the nature of these [Reusable] blocks is to have content in sync wherever it&rsquo;s displayed &mdash; edit once; update everywhere &mdash; I propose we change the name in the UI to &lsquo;Synced Blocks&rsquo; and adjust the block description a little bit to clarify that.&rdquo;</p>\n\n\n\n<p>The UI for Reusable Blocks is confusing because it is built on top of assumptions that users know the intricacies of how they work. WordPress developer Lee Hodson <a href=\"https://github.com/WordPress/gutenberg/issues/31163#issuecomment-898376830\">summarized the problem</a> and how the current UI leads to reusable blocks being accidentally edited:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The save reusable blocks dialog is nice but how many creators actually understand what this save dialog means? On the surface it looks as though everyone should understand the save/not save option but it&rsquo;s meaning is only obvious when you understand that reusable blocks are (currently) meant to either (a) not be edited or (b) edits to them are meant to affect all instances of the same block and (c) that reusable blocks can be converted to editable blocks (and not everyone immediately understands the difference) when edits to reusable blocks are meant to be independent of the block&rsquo;s template.</p><p>I feel that a nice idea (reusable blocks) has been very badly implemented and many creators are blissfully unaware of its pitfalls until they realize their &lsquo;template blocks&rsquo; have been overwritten.</p></blockquote>\n\n\n\n<p>Several contributors participating in the renaming discussion concurred that &ldquo;Synced Blocks&rdquo; would be a better name for the feature. This suggestion is the frontrunner so far. The conversation is still open and consideration of this proposal has been added to the <a href=\"https://github.com/WordPress/gutenberg/issues/27890\">Reusable Blocks Improvements</a> tracking issue.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Oct 2021 21:50:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WordPress.org blog: WP Briefing: Episode 18: The Economics of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11351\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2021/10/episode-18-the-economics-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20740:\"<p>In episode 18 of WP Briefing, Josepha Haden Chomphosy reflects on a recent lecture that she gave to students at Hendrix College in which she explored the economics of WordPress and the principles that sustain the project&#8217;s ecosystem.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References </h2>\n\n\n\n<p><a href=\"https://wordpress.org/showcase/\">WordPress Showcase</a></p>\n\n\n\n<p><a href=\"https://wpengine.com/resources/value-of-wordpress-worlds-first-study-of-wordpress-economy/#An_Expansive_WordPress_Ecosystem\">The Value of WordPress: The World&#8217;s First Study of the WordPress Economy </a></p>\n\n\n\n<p><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\">WordPress 5.9 Feature Go/No-Go </a></p>\n\n\n\n<h3>Digital Citizenship Resources</h3>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\">Becoming Better Digital Citizens Through Open Source</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\">Empowering Generations of Digital Natives</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\">Responsible Participation in Online Communities</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11351\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:11</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Joseph Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>So today marks the start of Digital Citizenship week. This year in 2021, it is the week of October 18th, and to kick it off, I want to share with you a bit of a lecture that I gave to a college class last week.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:55</p>\n\n\n\n<p>An economics professor teaches this class. And so, a little bit, I went to talk about how WordPress is essentially a microcosm of global societies. That was mostly why I was invited to come and give the talk. But one of the students asked a really interesting question about economics, and especially the economics of WordPress. And so, I&#8217;m going to take some time to do my best to answer that question here as well. But first, we&#8217;re going to start with some big picture information about WordPress that I shared with the students, and then maybe you also don&#8217;t necessarily know.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:00</p>\n\n\n\n<p>So the first place that we started was with the question of what WordPress is. Most of them had heard of it but didn&#8217;t necessarily have a good handle on what it is. And so this is the definition that I gave to them. This is a bit of each of the facets of WordPress that we kind of see right now.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:57</p>\n\n\n\n<p>Firstly, WordPress is, of course, a content management system, which means it&#8217;s a piece of software that uses a copyleft license, which means that it&#8217;s open source, and no one individual necessarily owns the rights to the code. If you get very specific, WordPress is, of course, a FOSS project or a free and open source software project. I know that there are discussions around when a piece of software is free, then what are you using to pay for that piece of software or to pay for your access to that software? And often, the answer is that you&#8217;re using your personally identifying information to pay for something commonly referred to as the data economy. If you&#8217;re not familiar with that, it&#8217;s a little bit of a three-pronged effort there. So you submit your data to get access to the software, or you can join the platform, depending on what it is that you&#8217;re working with. That platform or that software collects your data so that they can build a profile about what sorts of content engages you and so that they can share, essentially, audience cohorts like groups of people that kind of are talking about what you&#8217;re talking about, agree with what you agree about, and find interesting, the same sorts of things that you find interesting. And then those companies sell access to your attention. This is something that I refer to as the attention economy. I think there are a lot of startups at the moment that refers to the attention economy. The most iconic recent example was when the folks over at Netflix said that they weren&#8217;t competing against other streaming services; they were competing against sleep.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:54</p>\n\n\n\n<p>And I think that might ring true for quite a few of us at the moment. But anyway, to scoot us back one level, I had, as I said, WordPress is free software. But the difference with WordPress is that to get a copy of WordPress, you are not necessarily required to hand over any data. You don&#8217;t need to give anyone data to get a copy. You don&#8217;t need to give anyone money or data to open up a copy that you own or to build a website in it if you&#8217;re just doing it locally, but especially around that data side because WordPress is not collecting any data, we&#8217;re also not brokering access to anyone&#8217;s attention.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:37</p>\n\n\n\n<p>Another answer to the question of &#8220;What is WordPress?&#8221; WordPress software and the project enable nearly half a trillion dollars of revenue in the global digital economy, as we learned from a recent study from one of the hosting companies inside the WordPress project&nbsp; &#8211; oh, Inside the WordPress ecosystem anyway. And WordPress also runs 42% of the web, with some of the biggest sites we know using WordPress. Such sites like the New York Times, Rolling Stone, many, many others, which you can see in the WordPress showcase as well. I don&#8217;t necessarily want to just like call out all the big groups that use it. But it&#8217;s a lot.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:22</p>\n\n\n\n<p>&nbsp;To recap what we just learned about WordPress and what WordPress is. It is software that one uses a copyleft license, meaning no single entity owns it. Two, it is available at no cost, meaning no money changes hands for you to own a copy. Three does not track you, which means that you don&#8217;t have to give WordPress any personally identifying information to get a copy. Four is an enabler of a massive digital economy massive portion of the digital economy even. That, you know, means their services, extensions, themes, plugins, all of that stuff. And five, it is software that supports 42% of the web. Practically every other site you visit uses the software. So that&#8217;s WordPress.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:10</p>\n\n\n\n<p>With this massive free software, you might be thinking to yourself a couple of things. The first thing you might be thinking is, &#8220;Well, that sounds impossible.&#8221; But if that&#8217;s not what you&#8217;re thinking, you may be thinking, &#8220;how is it possible that a software that is technically owned by no one and takes no money or data to obtain &#8211;&nbsp; how is it that a software like that can power 42% of the web.&#8221; This brings me, of course, to a topic that I specialize in, which is how WordPress is made.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:45</p>\n\n\n\n<p>WordPress is, by now you know, built by a global community of contributors. And it&#8217;s partially contributors that are self-sponsored or giving of their own time freely, and partly sponsored volunteers, people who are paid by Five for the Future initiatives inside various companies. I have said many times, most recently at WordCamp US, that I have an ideal ratio of about two to one in that kind of volunteer or self-sponsored versus corporately sponsored set of voices. And also, as I said, at WordCamp US, we’re not necessarily getting to that ideal ratio right now because of the nature of the way the world is at the moment. However, this community functions almost like a tiny little digital society. There are ways to get your voice heard ways to take on leadership roles; there is a little bit of light governmental structure. And as with any society, any community like this, there&#8217;s a relationship inherent there. There&#8217;s almost a transactional element that takes place when you&#8217;re participating fully. Although I know that for the WordPress project, especially for open source in general, there is a reminder that we should always be contributing without the expectation of reciprocity. But even if you are contributing without the expectation of reciprocity, you still are engaging in an existing community, which means that you are fostering a relationship with the community or with the people who are also participating in the community with you. It&#8217;s just inescapable if you have people around and working together.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:38</p>\n\n\n\n<p>So two concepts really informed my work to future-proof the WordPress project. And the first one is digital citizenship, which is why this particular WordPress Briefing fits today. And the other is the Tragedy of the Commons, especially how we go about refreshing those commons. So digital citizenship, I talked about it a bit in the last WP Briefing. But it&#8217;s still true today that that&#8217;s important. And the thing that really matters to me as we are working through how to make sure that WordPress is moving forward together. But most discussions of citizenship are location-specific, which makes plenty of sense. However, with so many mobile devices and broader access to some level of internet, we have increasing opportunities to be connected because of interests or skill sets. And even the things that we aspire to or aspire to be with a community like WordPress, which has no home office or main location. Of course, it&#8217;s very important that all of the leaders in WordPress, all of the team reps in WordPress, are proactively engaging with the people in their teams and in their portions of the community instead of waiting for like happenstance running into people. We also use a bunch of social stuff to get people together: twitch screams, not twitch screams because it&#8217;s not that Halloweeny! Twitch streams, hallway hangouts, events that are both online and off. Everything that the Learn section of the community is doing with their discussion groups. There are so many ways that WordPress proactively engages with each other and engages with itself. And that work is all really important to keeping the community involved, which is key to any organization&#8217;s long-term success, and certainly is true for WordPress as long-term success. Because when your community or your organization or your society is engaged and invested in your collective success, then you are (get ready for a list) one, more likely to see obstacles early and be able to overcome them, two more likely to see upcoming trends and prepare for them, three more likely to see what is broken and be able to repair it before it is a major issue. And four, you are more likely to be a resilient and fruitful organization long after any single member has stopped participating.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:10</p>\n\n\n\n<p>The more connected to the community you are and the more active, the greater your influence and the ability to affect changes also become. And so, not only is it important for us to remain connected as a community just to make sure that everything is going well. But also, it&#8217;s one of the primary ways that people who are giving back can sort of have more of an opportunity in this particular ecosystem. In open source, anyone can gain influence by helping others by helping the software and by keeping the trains on the tracks. And so, one of the only lasting limits to long-term potential in an open source project is how good you are at seeing beyond yourself and seeing what good action can make beyond just your own benefits. I understand that there are also specific hurdles to contribution in your free time that I have dedicated a couple of different podcasts to, so I don&#8217;t want to neglect that reality.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:19</p>\n\n\n\n<p>I have found in my experience that one of the limiting factors that sometimes cannot be unlearned is not being able to see kind of a broader scope, a broader perspective than what you&#8217;re already bringing into it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:34</p>\n\n\n\n<p>So being a good digital citizen, that&#8217;s a really important part of keeping any society together any organization together and moving forward. But especially is in the context of digital citizenship, is true for WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:48</p>\n\n\n\n<p>The second thing that is really important to me is this concept of the Tragedy of the Commons, which is, of course, an economics term, open source has borrowed. We have talked about it in this podcast in the past. And today, I specifically am talking about how WordPress works to consistently be refreshing the commons. So the theory of the Tragedy of the Commons says that all societies can withstand a certain volume of free-riders. A certain number of people who reap the benefits of that community’s society without necessarily putting anything back into it. And that is no different in open source than in any other place where you would apply this concept. The particular catch for WordPress is of course, that it is free, freely available and has no specific copyright holder. And so in those circumstances, it is incredibly easy for a small group of people to maintain the software while the whole world uses it for free. And not only is it possible for a small group of people to maintain it, but if you&#8217;re not careful, it&#8217;s also easy for a small group of unpaid people and unacknowledged people to maintain something forever. And at the volume that WordPress operates at, that&#8217;s a really risky choice. It doesn&#8217;t help to support those people; it puts the long-term stability of the software in jeopardy. And at the end of the day, it just does not help to replenish the commons to make sure that everybody keeps getting to have the benefits of this ecosystem in the long term.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:39</p>\n\n\n\n<p>As many of you know, there is this program called Five for the Future. And that program is essentially modeled after a tithe. So the invitation to this program when it was first introduced in 2014 was that if you or your company or your community is made better or made possible by WordPress, you should give back to the WordPress project 5% of your resources.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:07</p>\n\n\n\n<p>It is an aspirational 5%, of course, and some groups give back their time while others give back with their money. But almost anyone who wants to give back has some skill that WordPress needs. That particular program has really grown in leaps and bounds since it was introduced. I don&#8217;t know exactly how many team members were considered Five for the Future contributors when it was first introduced in 2014; it was a little before my time. But at the moment, it&#8217;s about 150 people that I am routinely aware of or in contact with, which is still a small number considering how many people use WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:52</p>\n\n\n\n<p>However, many corporations who have seen the most benefit, including, you know, the company that I work for (Automattic), and a lot of other hosting companies in the ecosystem, all do a really good job of refreshing the commons so that WordPress is still usable for businesses of all levels.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:11</p>\n\n\n\n<p>I want to leave us with one final big picture thought about open source. This is going to be a callback to one of my earliest episodes in this podcast. But I think that it&#8217;s always worth remembering. We&#8217;re going to talk about this really popular phrase in open source projects &#8220;free as in speech, not free as in beer.&#8221; And for WordPress, as you know, it&#8217;s a little bit of both. It&#8217;s literally free. But also, since it&#8217;s open source, it has a free as in speech component to it as well.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:46</p>\n\n\n\n<p>The four freedoms of open source as laid out in the 90s. So 10 years into the open source movement, are basically that you have the freedom to run the program for any purpose, the freedom to study how the program works, and change it so that it can do your computing as you wish, the freedom to redistribute copies so that you can help your neighbor and the freedom to distribute copies of your modified versions, giving the community a chance to learn and benefit from the changes that you put into the software.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:22</p>\n\n\n\n<p>I don&#8217;t remember if I said this in my original podcast, but I&#8217;m going to say it today, free speech has a lot of responsibility, just like being a part of a community. Governments or communities, or in our case, this software is built by the people who show up. For WordPress at 42% of the web, every small choice we make can cause huge changes in how people experience the web today and tomorrow. And that, to my mind, is really no different than participating in any sort of civic infrastructure. The changes that are made today, or the errors that we prevent, set the tone and the circumstance and the potential to thrive for everyone who comes after us.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:17</p>\n\n\n\n<p>That leads us into our smallest of big things. I just have a couple of things for you all today. Firstly, at the time of this recording, this is prior to the Go/No-Go demo meeting for WordPress 5.9. So I have no idea what&#8217;s happened. But by the time this podcast has been released, we will have had the Go/No-Go meeting and also have shipped the post that summarizes what happened, what we hope to change in the next essentially sprint so that we can confidently move forward with a clear set of features for the 5.9 release. I will include a link to the notes below in the show notes. Kudos to everyone, props to everyone who participated in that meeting. And also props to all the people who have been helping us as we head into this final release of the year and all of you who are going to help us make it successfully to the end.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:15</p>\n\n\n\n<p>The second thing I already kind of alluded to at the top of the podcast, it is Digital Citizenship week; two or three years ago, the WordPress blog had a series about digital citizenship and what it means to be a good digital citizen, what it means to do that in the context of WordPress. I will drop a link to those posts in the show notes as well. They are very well written and very important, and fairly evergreen content. If I think that there is something worth updating, I will update it before putting it in the show notes. And that is your small list of big things.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:57</p>\n\n\n\n<p>Thank you all for tuning in today for the WordPress sprint. I&#8217;m your host, Joseph Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Oct 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"Gutenberg Times: Changelog #53 – WordPress 5.9 Go/No Go decision, Gutenberg releases 11.6 and 11.7, and Themes and Styles for the Editor￼\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=19322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://gutenbergtimes.com/podcast/changelog-53-wordpress-5-9-go-no-go-decision/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58603:\"<p>In this episode, Birgit Pauli-Haack and Grzegorz Ziółkowski discuss WordPress 5.9 Go/No-Go Decision, Gutenberg Releases 11.6 and 11.7, and ongoing discussions about Themes and Styles for the Editor.</p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-53-wordpress-5-9-go-no-go-decision#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/changelog-53-wordpress-5-9-go-no-go-decision#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-19322\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<h2>Announcements</h2>\n\n\n\n<ul><li><a href=\"https://app.mypodcastreviews.com/podcasts/k7H9zO/reviews/7420388\">Review by Jorge Calle, Ecuador</a></li><li><a href=\"https://us02web.zoom.us/webinar/register/3416344753630/WN_v-EXlrFaRcabGz78jgj8CA\">Oct 28, 2021 &#8211; noon EDT / 16:00 UTC </a><br />Live Q &amp; A: Case Study: Converting Classic Widgets to Blocks for BuddyPress</li><li>Video: <a href=\"https://www.youtube.com/watch?v=-PZwfvtkQOM\">How can we make building blocks easier?</a> w/ Helen Hou-Sandí, Mark Jauquith and Riad Benguella</li><li><a href=\"https://helen.blog/2021/08/exploring-custom-blocks-from-a-php-centric-developer-ux-point-of-view/\">Exploring custom blocks from a PHP-centric developer UX point of view</a></li><li>Video:&nbsp;<a href=\"https://www.youtube.com/watch?v=eiIhJdFfamA&t=9s\">Going from Classic to block-based Themes</a> w/ Ellen Bauer, Carolina Nymark and Anders Noren</li></ul>\n\n\n\n<h3>WordPress 5.9 Updates</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\">WordPress 5.9 Go/No-Go Decision October 14, 2021</a> (Make Core)</li><li><a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">WordPress 5.9 Planning Roundup</a> (Make Core)</li><li><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">Preliminary Road to 5.9</a> (Make Core)</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/35662\">Series of bugs and shortcomings faced during 5.9 go/no go prep</a> (GitHub)</li><li><a href=\"https://github.com/WordPress/gutenberg/projects/62\">WordPress 5.9 Must-Haves Project</a> (GitHub)</li><li><a href=\"https://make.wordpress.org/core/2021/10/15/summary-navigation-editor-and-block-hallway-hangout/\">Summary: Navigation Editor and Block hallway hangout</a></li></ul>\n\n\n\n<h3>WordCamp US</h3>\n\n\n\n<ul><li><a href=\"https://www.youtube.com/watch?v=_6-yAZRXY8k&t=6725s\">Building Modern WordPress Sites: The Interplay of Blocks, Patterns &amp; Theme.json</a> – Rich Tabor from Extendify</li><li><a href=\"https://www.youtube.com/watch?v=_6-yAZRXY8k&t=19298s\">A Voice for the New White House Administration with the Block Editor</a> – Helen Hou-Sandi from 10up</li><li><a href=\"https://www.youtube.com/watch?v=_6-yAZRXY8k&t=23716s\">Creative Use of Block Styles</a> – Kjell Reigstad from Automattic</li><li><a href=\"https://www.youtube.com/watch?v=_6-yAZRXY8k&t=2234s\">Demystifying Gutenberg Blocks – Understanding First Steps to Becoming a Gutenberg Developer</a> &#8211; Cory Webb, software engineer at Fast</li></ul>\n\n\n\n<h2>Community Contributions</h2>\n\n\n\n<ul><li><a href=\"https://wpblockpatterns.com/\">WPBlockPatterns.com</a></li><li><a href=\"https://wordpress.org/plugins/blockeditor-fullscreen-mode-control/\">Persistent Block Editor Settings plugin</a></li></ul>\n\n\n\n<h2>What&#8217;s Released</h2>\n\n\n\n<h3>Gutenberg 11.6</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/01/whats-new-in-gutenberg-11-6-29-september/\">What’s new in Gutenberg 11.6 (29 September)</a> (Make Core)</li><li><a href=\"https://wptavern.com/gutenberg-11-6-improves-the-global-styles-ui-adds-child-theme-support\">Gutenberg 11.6 Improves the Global Styles UI, Adds Child Theme Support</a> (WPTavern)</li><li><a href=\"https://wptavern.com/gutenberg-11-6-introduces-new-api-for-locking-blocks\">Gutenberg 11.6 Introduces New API for Locking Blocks</a> (WPTavern)</li></ul>\n\n\n\n<h3>Gutenberg 11.7</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/14/whats-new-in-gutenberg-11-7-october-13th/\">What’s new in Gutenberg 11.7 (October 13th)</a></li><li><a href=\"https://wptavern.com/gutenberg-11-7-iterates-on-global-styles-improves-adding-navigation-links-and-adds-column-spacing\">Gutenberg 11.7 Iterates on Global Styles, Improves Adding Navigation Links, and Adds Column Spacing</a></li></ul>\n\n\n\n<h2>What’s in active development or discussed</h2>\n\n\n\n<p><strong>Gallery Block Refactor</strong> <a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Dev note by Glen Davies</a></p>\n\n\n\n<h3>FSE Q &amp; A &#8211; Submit your questions!</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/13/submit-full-site-editing-questions-by-oct-27th/\">Submit Full Site Editing questions by Oct 27th</a></li><li><a href=\"https://make.wordpress.org/test/2021/05/13/fse-program-answers-from-round-two-of-questions/\">FSE Program: Answers from Round Two of Questions</a></li><li><a href=\"https://make.wordpress.org/test/2021/02/19/fse-program-answers-about-general-functionality/\">FSE Program: Answers about general functionality</a></li></ul>\n\n\n\n<h3>FSE Theme Switching </h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2021/10/05/fse-program-block-theme-switching-summary/\">FSE Program Block Theme Switching Summary</a></li><li><a href=\"https://make.wordpress.org/design/2021/10/08/adventures-in-block-theme-switching/\">Adventures in Block Theme Switching</a></li></ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-container-616f50bcbd0e9 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<ul><li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li><li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gziolo\">@gziolo </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li><li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li><li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li></ul>\n</div></div>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Hello, and welcome to our 53rd episode of the Gutenberg Changelog podcast recorded on October 15th, 2021. In today&#8217;s episode we will talk about so much, WordPress 5.9 go/no go decision, Gutenberg releases 11.6 and 11.7 and ongoing discussions on themes and styles and editors and everything.&nbsp;</p>\n\n\n\n<p>I am Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate, sponsored by Automattic. I&#8217;m here with my co-host, Grzegorz Ziółkowski, code wrangler at Automattic and WordPress core contributor. How are you, Grzegorz? How are you doing?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I&#8217;m great. I had a blast during my vacation. I want to tell you more about it, but we have so much to cover today that there isn&#8217;t much time for chit-chat. How have you been lately, Birgit?</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Well, I had a blast running live Q&amp;As this week and last week and the week after next and talking to developers and users. You&#8217;re right, let&#8217;s catch up after the show and let&#8217;s get this started.</p>\n\n\n\n<p><em>Grzegorz Ziolkowsk</em>i: Yay. Before we start we want to thank you, Jorge Calle user name, AtrumGeost from Ecuador for his five-star review.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yay.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Hooray. We are so thrilled to have you as our listener. Jorge wrote, “the best all-the-things Gutenberg podcast. This is my favorite Gutenberg and WP-related podcast. It helps me keep up-to-date with all the new and upcoming changes and to understand the reason behind those changes.”</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: That&#8217;s so nice. That&#8217;s exactly what we&#8217;re trying to do. Thank you, Jorge. Greetings to Ecuador.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, we could put that as our mission. Yes, greetings.</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yes. All right, we have a few announcements because it&#8217;s been a while. The next live Q&amp;A, put this on your calendar, is a discussion with the BuddyPress team on how they converted classic widgets into blocks. We learn what was hard and got easier over the first two times I did it. Join us on October 28th at noon Eastern, 1600 UTC with Mathieu Viet, David Cavins and Varun Dubey on the live Q&amp;A show. It&#8217;s going to be really, really interesting, especially for developers who still are a little bit on the edge to jump into Gutenberg development, also theme developers who have widgets in their themes. It&#8217;s definitely going to be educational because we will have some demos.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I guess it should be also useful for the developers who have plug-ins and they still waited to convert them to blocks because it&#8217;s all about that, right?</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Right, right. Everything needs to be a block now. It&#8217;s just so much better for the users to use them because everything&#8217;s just one concept, they don&#8217;t have to do the mystery meet with what are widgets, what are menus, what are sidebar and all this kind of thing. Yeah, speaking of live Q&amp;As, yesterday I had the privilege to host a discussion among WordPress giants, Mark Jaquith, core committer for 17 years, Helen Hou-Sandi working on WordPress for 10 years and Riad Benguella who is the newbie in that regard.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: A rookie.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: He&#8217;s already working on Gutenberg for even five or even seven years, so &#8230;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Five. Five.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Five years. They discussed how can we make building blocks easier. It was a follow up on a Twitter thread Mark started with a question, what if building custom blocks for the block editor was as easy as supplying attributes and a block of HTML? What if this produced react editing code and PHP rendering code without a build stack? Coincidentally enough, he and Riad independently of each other were exploring some technical avenues for that and Helen was too. Grzegorz, you know more about the technical framework and underpinnings of Gutenberg, what was your take from the discussion yesterday?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I was really excited to see this discussion happening in the forum where people have more time to express their ideas, where they come from, what&#8217;s their use case and how they arrived at similar conclusions which is the best part of that. All three people, they were working on different aspects. Riad is working only on core, mostly on core and Helen is doing work for customers, same as Mark. Basically different venues came to the same conclusions. It&#8217;s really nice that we have good understanding where it should all go now. Those ideas that they both shared are pretty decent and I guess this is something that should be materialized in the future. That should greatly benefit all the developers that increase blocks on a daily basis. It was really cool and I encourage everyone who is doing block development to catch up with this discussion.&nbsp;</p>\n\n\n\n<p>Also check the references they mentioned. One is from Riad, it&#8217;s on his GitHub, it&#8217;s called Block, we will provide links. Mark, he also has the same idea, I believe it&#8217;s called Blocksta, the code name. Yeah, that&#8217;s really insightful from my perspective. I learned a lot, especially about the background, all the friction people have and the pain points. It&#8217;s something that, as a core team member, I heard a lot about that, but it was more on the side of showing what&#8217;s wrong and not necessarily what are the challenges people have on a daily basis that end up with all the frustration they share, which is very limited, especially on Twitter which is a few characters.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah, yeah. I also like that both Mark and Helen expressed and emphasized that the ideas that they had on how to do some templating and all that would not have been possible from the beginning because you need some underpinnings already working and some expansion of the API. Mark mentioned the block API version two where PHP and JavaScript have the same information about blocks, that was necessary to actually even think about any of the additional helper function, tool function for block editing and block writing or building. They also expressed that it shouldn&#8217;t, it&#8217;s not necessarily something that needs to be in core, but it could be one of the official tool building for plug-in developers. Yeah, it was a really good discussion. I will also share in the show notes Helen Hou-Sandi&#8217;s blog post called exploring custom blocks from a PHP-centric developer UX point of view where she even more elaborated on where she was coming from from the agency work there.</p>\n\n\n\n<h3><strong>WordPress 5.9 Go/No Go Decision</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, definitely. I could continue on this topic for long, but let&#8217;s go to the most important announcement of the day which is the go/no go decisions. The meeting happened yesterday. The official post isn&#8217;t ready yet. Yesterday will be October 14. We spoke with Matias and Hector Pietro who attended the meeting. It looks like all the features discussed during this session should be included in the WordPress 5.9 release which means that block themes will be supported as an option with how they call it, a remark that there will be something like early access or something along those lines just to build proper expectations for users. At the same time it&#8217;s worth to mention that the new Twenty Twenty-Two theme built out of the blocks will ship with WordPress. Therefore, the default experience with themes for all new websites will start with blocks. I think it&#8217;s huge and super exciting to see it happening finally. They took so much time, but there is more. Do you want to say something about that?</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Well, I just wanted to notice that the theme Twenty Twenty-Two was actually introduced last week by Kjell Reigstad and he&#8217;s working with Jeff Ong on it. We will share, of course, the link in the show notes, but if you want to check it out it&#8217;s on the design, actually on the core make blog, very buried but it&#8217;s beautiful. He also has some ways how he can change the theme.json and then make the theme a total different look than what he&#8217;s originally planned there. It&#8217;s really nice. You had more to say about the go/no go from Matías Ventura?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. No, you sidetracked my brain now for the Twenty Twenty-Two theme. It&#8217;s really beautiful. I really admire the work done with that, especially because it was very challenging on the technical level. We had to build all the blocks to make that happen but the outcome is really good.&nbsp;</p>\n\n\n\n<p>I also would like to bring to your attention the issue that was created today by Matías which contains a series of bugs and shortcomings that he faced during preparation for this 5.9 go/no go decisions meeting. We will share a link to the issue which has the number 35662. It only confirms that there aren&#8217;t any significant bugs that put too much risk on the roll-out plan, however it will be essential to sort out those minor issues because they might negatively impact the first user impression. One more thing to mention is that you all will be able to watch the progress of the release execution in the traditional way which is through the issue, through the project board which is Gutenberg and the name is WordPress 5.9 must-haves. The project number is 62.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. Thank you for the summary there. There&#8217;s actually a video that you can, it was a one-hour meeting and they recorded it, it&#8217;s available on WordPress.TV. I wanted to go still for those who &#8230; the plan, the schedule of the release. Feature freeze will be November 9th, that&#8217;s 42 days after go/no go. From today on it&#8217;s 41 days.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Or even 40 because the meeting was postponed by one day.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Oh right. Right, right. It&#8217;s actually 39. Beta one will be released or is scheduled to be released November 16th and then the release candidate one is scheduled to be released on November 30th. The final release is scheduled for December 14th, 2021 and will have, from the Gutenberg plug-in releases, the latest one will be 11.9, all the versions from 11, or 10.8, or 11.0 I think to 11.9, release candidate. 11.8 will still be a normal release on Gutenberg plug-in and then 11.9, the release candidate, the features that are in there will be then merged with core and then bug fixing starts.&nbsp;</p>\n\n\n\n<p>I just also want to mention that before the go/no go meeting the group working on the navigation block and editor screen, navigation editor screen held a hallway hangout so to speak. Among other things they concluded that the navigation editor screen itself is not ready for 5.9. Only the navigation block and the block for new navigation and I think it has some &#8230; I don&#8217;t think it has a feature for existing menus, so we need to see about that, the main reason why they won&#8217;t solve the underlying backwards compatibility issues successfully before the release. A menu is a major part of a website. There are a myriad of third-party products tapping into the current features and they all need to be accommodated in one way or another.&nbsp;</p>\n\n\n\n<p>There is a summary post about that on the core blog, we&#8217;ll share the links of course and there&#8217;s also a video where you can also follow along on the meeting. We will share all the relevant links for the 5.9 at the current stage in our show notes, that&#8217;s a summary post of the meeting, Matías&#8217;s roadmap, Josepha&#8217;s planning post and then the meeting recording as well as the summary post by Hector Pietro. That&#8217;s about that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. Just to summarize, the navigation block is going to be included, right? It&#8217;s crucial to have it for the block themes.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yes. Yes, but they were still trying to figure out if they need a second block for the backwards compatibility or they want to put it all in one block. They concluded now that they don&#8217;t want to burden the new feature, the new navigation block with the legacy part from 18 years of WordPress development so they are working on a second block that is the compatibility, that handles the compatibility issues. Also, some of the plug-ins actually tap into the navigation editor screen as well and the customizer so there are so many different branches of what to think about that they said, okay, we need to take a step back and see that we&#8217;re not making the same mistake that happened with the widget editor where they weren&#8217;t having enough tests with the third-party plug-ins to get this out.</p>\n\n\n\n<p>Yeah, that&#8217;s about the release. I&#8217;m totally excited about it, especially because of the block theme with the full site editing. We will have some new or old terms. I think we were always talking about the block-based theme, it&#8217;s now called block theme. We were talking about the site editor, or template editor, now it&#8217;s the editor. We were talking about the global styles, they&#8217;re just the styles because, yeah, that&#8217;s all there is. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Everything gets simplified.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Simplicity is to aim for, yes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Even the user experience that the blocks provide.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah, and….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Okay. Let&#8217;s move to another point.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Move on. Yeah.</p>\n\n\n\n<h3><strong>WordCamp US 2021</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. WordCamp US, I didn&#8217;t watch it live, I watched some talks afterwards. How about you, Birgit?</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: I watched it live. I took the day off from other work so I could really concentrate on that. My favorite talks were, I couldn&#8217;t decide on the favorite so I have three favorite talks. One was from Rich Tabor from Extendify, his talk was building modern WordPress sites, the interplay of blocks, pattern and theme.json. That&#8217;s definitely a very good presentation to watch, not only because all his slides were so beautiful and his voice was so soothing, we were all very relaxed about all the new things that come to WordPress, but he also made very clear how all these things work together.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I saw also that some people were confused whether it&#8217;s an advertisement for WordPress or is it an actual talk.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Then the other one was a voice for the new White House Administration with the block editor by Helen Hou-Sandi. It was an hour-long presentation but it had a few different parts in there. One was making clear the advantages between a form-based content collection screen to the what-you-see-is-what-you-get editor and how they accomplish that. They actually built custom blocks, they did that for the experience. Then Helen, in the second part of it she also went in and explained why native blocks, Gutenberg blocks are so important. Then went on to actually show how she coded one of them and made the difference between the different, showed the difference between the approaches that they were exploring and where they finally settled. She has actually some code examples in there and she walked us through her set-up. That was really good. There was a lot of things packed in there, but it was one whole presentation.</p>\n\n\n\n<p>Then the last one was Kjell Reigstad who showed us creative uses of block styles. Block styles is something that you use the core block, but you add additional CSS to it. That&#8217;s pretty much what block styles are. He showed how to do this, he also shared his repository, but he did all kinds of different graphical and animation. It was just beautiful to see what is all possible with just using block styles. You don&#8217;t have to do a whole lot of programming from that, at least not in JavaScript or in PHP, you need to do a lot of CSS for that. A lot of designers know that part and I think it&#8217;s a good starting point to get your creative juices going. Yeah, how about you? What did you watch on the rerun?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I watched all the talks you mentioned so you took my picks. Anyway, I have one more to share, the one from Cory Webb, software engineer at Fast. He had a talk named the demystifying Gutenberg blocks, understanding first steps to becoming a Gutenberg developer. I really liked the talk because it was structured in a very nice way. It covered all the APIs, basic APIs you need to know to start with blocks, but he also added a section where it was nice to know and there&#8217;s some additional going further if you want to extend your knowledge base and there are some other topics. That&#8217;s a good way of approaching that and it will be super beneficial for anyone who either already started working with blocks or they want to start because it covers all the levels when you want to become a master going from the beginner and scaling your knowledge. I liked that about this talk.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. If you watched that you have all the pieces that you need to go from beginner to experienced. That&#8217;s also a part of my talk that will be shown at the Page Builder Summit that starts on Monday from Nathan Wrigley and Ann le Roux. There are a lot of talks there on the professional use of page builders in all areas. Ann is doing her full site editing talk and I&#8217;m going to talk about how to customize blocks for client projects. If you missed it, last week was also a theme developer live Q&amp;A. Ellen Bauer, Anders Norén and Carolina Nymark were on the show. Anders showed his block theme, Tove, and Ellen Bauer showed her studios theme, Aino, as a hybrid theme. I loved their excitement about the new possibilities of themes and blocks and full-site editing. They also shared how they made the journey from building classic themes to going block themes now. They also answered a ton of questions from the audience. The recording is available on YouTube and we will try and post a transcript and resources on the Gutenberg Times next week.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I started listening to this live Q&amp;A as well, it was pretty good, but I was driving so I couldn&#8217;t show the demo so I stopped. I didn&#8217;t have to time to go back, but I definitely have to. One thing that caught my attention was that Anders mentioned that one of the users of his team, he applied a lot of modification using styles and similar things. He sent a link to show the end effect. Anders said that he didn&#8217;t recognize this theme, he couldn&#8217;t say it was his. That&#8217;s a great thing about the future of building themes, the user will be so much empowered to achieve their goals.</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Right. Yes. Yeah. Speaking about themes, there is a new site out there called wpblockpatterns.com. It&#8217;s a place where you can find out how your block patterns or the block patterns in the directory look with any of the block themes that are in the repository. I did a few tests and I&#8217;m delighted to see that block patterns will persist even when you switch the theme on your site, so something that&#8217;s very hard to do with third party page builders but that&#8217;s also very hard to do with classic themes where you sometimes lose content just because you switch themes. Now with block patterns that&#8217;s a much better build and they all persist, including the design, when you switch the theme. It&#8217;s really interesting to see. Speaking of block pattern, there&#8217;s a small change in the pattern directory. The meta team has added now a featured category so the best patterns you can look up in the featured category. You can also select them from the inserter inside of the editor.</p>\n\n\n\n<p>Another community contribution came from Marius Jensen. He updated his plug-in called persistent block editor settings. He added support for the following user settings, block breadcrumbs, that&#8217;s the breadcrumbs on the bottom of a screen, on and off, change the most used blocks to what the user actually is doing and the caret positioning. Then all the settings are stored in the individual user profile information on the site so that persists between computer or browser changes. I think it&#8217;s a great plug-in and many, many people have asked for that. It has quite a following on the WordPress repository. I also think that sooner or later, I know that the core team is working on something like that, but it&#8217;s still blocked by some of the not finished things I would say. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes. It&#8217;s in progress for so long. There were several approaches that tried to address that. Maybe it&#8217;s good that it didn&#8217;t happen before because now we will have several screens for the editor and that brings another level of complexity. Still, the way it&#8217;s structured, even in the local storage of the browser, so it persists per browser at the moment, it&#8217;s still something that might change slightly at the time of the WordPress 5.9 release. Starting from that, I guess it&#8217;s a very good moment to finally bring the same functionality to core.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. Yeah. You mentioned this, I was just &#8230; you were distracting me because I was counting the different editor screens that we have now and it&#8217;s quite a few. It&#8217;s a post editor, it&#8217;s a widget screen, it&#8217;s a template editor, it&#8217;s a template parts editor, it&#8217;s the reusable block editor. It&#8217;s really interesting.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, that&#8217;s a lot. I mean some of them are the same editors behind the scenes, but conceptually they are different. Now, as we will cover soon, we also have this zoom mode so you can switch in the editor as it will be called from now on from a full template view to the template part view, so that&#8217;s yet another way of looking at that.</p>\n\n\n\n<h3><strong>What’s Released &#8211; Gutenberg 11.6</strong></h3>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. Well finally, half an hour into the show, we are at the releases. Gutenberg 11.6 was released on September 29th. The WP Tavern covered some of it and of course some of it is also in the &#8230; oh, the WP Tavern actually had two posts about it. One is about the release as a whole and the other one was introducing the new API for locking blocks. I think that was one of the major features there. Let&#8217;s go through that.&nbsp;</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>We start with the query pagination now can use the flex layout which is really cool. The site logo now has the feature to crop the image. If your logo that you uploaded is not fitting in the spot you can crop it. Now it&#8217;s also possible to zoom and rotate the image, so that is really a step forward.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: There is this item for gallery block which is at toolbar bottom to convert old galleries to new format. I&#8217;m not quite sure it&#8217;s something that will stay for longer, or is it something for the transition period, but it&#8217;s great that this is now possible because it will help with the ongoing efforts to bring inner blocks for the gallery.</p>\n\n\n\n<p><em>Birgit Pauii-Haack:</em> The gallery block has experienced a refactor, instead of just having the IDs of the images in there and then rendering them it actually comprises now of single image blocks that you can add all the different features that you have with the image block also to the single image in a gallery block. You have then the gallery outer and then the inner blocks are image blocks. The roll-out is, in that regard it will not automatically convert the old to the new galleries until it&#8217;s rolled out and until it&#8217;s coming to core because right now it&#8217;s still an experiment. You can switch that over to the new gallery. It&#8217;s called update, the button in your gallery toolbar and then you can convert it to the new format. I think in the final roll-out, when you open up the post it will automatically convert it, but not with all the previous. It will not touch that unless you really wanted or unless you edit that particular post. Yeah.&nbsp;</p>\n\n\n\n<p>Then the color picker got changed and is rolled out, it&#8217;s more accessible and it also has a copy function and all that. It also makes the rounds now, we saw it in 11.6 as well as in 11.7, that&#8217;s gradually exchanged on all the blocks. Do you know anything else about the color picker?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: No, I know that there is a big redesign happening. I don&#8217;t know why, but there&#8217;s always a reason.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. I think it was accessibility problems that the old color picker had.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Oh. Maybe, as far as I remember that was something that was worked on before, WordPress 5.0, which was a long time ago. I&#8217;m sure it was accessible enough to get through to the release then. Maybe there was some concerns that are addressed now.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Now there is a simple styles preview in the sidebar of the template editor or site editor that you can modify some of the styles in your panel and it also now uses a navigation component. That&#8217;s just the underlying feature for the global styles preview.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. For the preview you see some characters and it shows the typography, how it looks in practice and also the colors that are applied to that. It just gives you a slight preview so you don&#8217;t have to navigate through the page and look for that. It&#8217;s pretty useful in my opinion.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. You see the final version of it right now in the video from last night&#8217;s meeting of the go/no go when Matias Ventura was demoing it. It&#8217;s a nice &#8230; also with additional color palettes. It has received quite a few iterations since it got added to the plug-in. Full site editing, there is now basic support, the executive word is basic support for child themes when you have a block theme so you can have different features added or switched on and off in your child theme that maybe the parent theme doesn&#8217;t allow. You have different color settings and any settings that you want to you can do in your theme.json for the child theme and still get updates for your parent theme.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. The feature that I mentioned a few minutes before is a way to edit template parts in a special view. When you are editing your template you can use this dropdown menu which is an icon with three dots. There is this new option, edit template part. When you click that, everything disappears but the template part and you can focus on editing only that area, which is pretty handy. In the context when there is a lot of blocks sometimes it&#8217;s hard to see when the template part starts or ends. I like this addition.</p>\n\n\n\n<h3><strong>APIs</strong></h3>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. Yeah. Then we come to the lock control for block type level. As we mentioned there&#8217;s an article that covers that as a whole at the WP Tavern. At the attribute level it supports locking the block from being moved or removed and it hides the block moving errors and the delete button if the block is locked. You can use that also with your &#8230; it&#8217;s just an attribute in the block.json if I see this correctly. You can also use that for your block patterns. That can have locked and unlocked blocks. That&#8217;s-</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Oh yeah. That&#8217;s true. That would be a good use case, yes.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. That&#8217;s also something that Matias demonstrated yesterday, last night in the video. What else do we want to point out from the 11.6? Bug fixes, well we&#8217;re going to jump over the bug fixes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I think you had something highlighted for the site editor.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah, the experiments. The experiments, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Basic plug-in support.</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. Sorry. The site editor now has basic also, our executive word is basic plug-in support. It adds the support for the plug-in sidebar. The site editor is now the editor and that&#8217;s where you do the full site editing pieces. The sidebar there can now be targeted by plug-ins for the sidebar, for the menu items in the menu as well as close and open general sidebar action. Plug-in developers, extenders will really be happy to hear about that. We were waiting for that too.&nbsp;</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p>There was a big push for documentation updates, especially for the packages and the components. Developers can now look up some of the documentation and don&#8217;t have to figure out from code what does this do.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. I guess there were also some updates related to how to contribute to the WordPress components package. That&#8217;s the most important part that builds all the experience, all the UI elements and so on. There&#8217;s a lot of movement in that area which also shapes how global styles look. You can see a lot of changes in that area. That&#8217;s all because of these efforts.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. All right. Code quality, I think that was all &#8230; was that all that we wanted to say about 11.6 in this episode?</p>\n\n\n\n<h3><strong>Gutenberg 11.7 Release</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I guess we have a lot of cover also from 11.7 that was released on October 13th. It would be fair to say that we are done with the 11.6 release and just move to the next one because it was a huge one and there was a lot of enhancements included in this one, way more than the one we already covered.&nbsp;</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>Let me start with the changes to the block editor. With the work, ongoing work on the navigation block and all the child blocks there was a need to have a way to use also slash inserter in this content. So far you could do it only through the paragraph block, which was quite a big limitation. It is now fixed.&nbsp;</p>\n\n\n\n<p>It&#8217;s enabled to some of the links to the blocks that allow you to insert links and stuff like this. When you insert a link and it has some name, when you delete that name and write a slash then you will be able to insert a block, other types of blocks that fit in that context, which is pretty good. This is something that is still, the API behind that is still experimental. Every block author there can experiment with that by enabling the flag called underscore experimental slash inserter.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. I think what that also does is give you a little input screen from the slash inserter, not that you have to &#8230; up until now the slash inserter only added, gives you fast access to adding a block, but now you can actually add also some parameters to that and enter it right there. That&#8217;s a real speeding up the workflow quite tremendously. As you said, any block can have that so it&#8217;s also the plug-in, the blocks that come with plug-ins can also use that. That&#8217;s really good, immediately extender friendly.&nbsp;</p>\n\n\n\n<p>It also has added or enabled the ability to create pages directly from the inline link UI on the navigation bar. The new empty page gets created, that&#8217;s a feature that comes over from the other editor screen but I think I really like how they implemented that, the new empty page gets created behind the scenes with a title set on the text typed in the search input field. That&#8217;s definitely also a fast way to create a menu when you know you have the outline of your website and you just create the menu headers and then it automatically creates all the pages for it as well. That&#8217;s really cool.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. At the end of the process of creating your navigation you just go to those pages and fill it with content, which is pretty nice. It should speed up the whole process really.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Exactly. Yeah. In 11.6 came the site logo cropping and image manipulating features, now you also get, with 11.7 you also get duotone support which means that you can have a fixed color scheme around your website. Every image that you have might fit better into it. Really that&#8217;s a cool thing.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes. Exactly. There&#8217;s more for the columns block, they enabled the block gap feature which we covered in past episodes. When it&#8217;s combined with vertical margin support you can have a really nice effect, so finally you can add some spaces between columns and there is a control for that which allows that and some nice animations that support that. It&#8217;s a very nice way that was missing for so long. Now it&#8217;s finally implemented.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. If you&#8217;re a theme developer who has actually taken out the gap between the columns, you can now, it can now be done through the interface. I saw some nice animations or demos where you have three columns that are a different color but they don&#8217;t have a boundary so they go from one color to the next without the background color of the site shining through which is quite a nice effect when you just want to liven up the text, the wall of text when you&#8217;re writing so much and just have some graphical play around with it interspersed there.&nbsp;</p>\n\n\n\n<p>The navigation, oh yeah, from the navigation block you can now transform your link into other allowed navigation blocks. You can transform it into a sub-menu, menu or a site logo or a home link or a social icon, which is cool if you change your mind on some of the links.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. I&#8217;m not quite sure what happened with the content. For instance, if you have a site logo and you want to transform it into something else, which probably will have a different URL, it might be it uses just the same URL and then you just need to edit that. Anyways, it&#8217;s a really interesting idea to speed up the process.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Well this one is actually only going from a link to something else, not the other way around.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Oh, is it?</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The initial idea that I always, that stuck in my mind, all the transforms should be two ways. If you convert from something you are able to convert that back. Maybe it&#8217;s now relaxed, you can always use an undo button and that should be pretty much it. I guess it&#8217;s whatever makes it easier for the user is fine from my perspective.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah, I think I need to press that for this if there is a way going back, just from a social icon link to just a mere menu link. Maybe it&#8217;s a different context here. Yeah. Now you can actually &#8230; there was a problem when you have these.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Just to explain that, why the rule was like that, when you are transforming from the heading to the paragraph then you use the same content and it&#8217;s pretty straightforward. However, if you would like to go from the image to cover block then you have only the image, but as soon as you add some heading or something like that in the cover image, when you go back to the image block then it isn&#8217;t quite sure what should happen with this heading. You could lose some content.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. Yeah. No, I get it. Yeah. I&#8217;ve only been situational, but I&#8217;ve never had a situation that I have already a cover block and only want to go back to an image. I think that&#8217;s just a lack of imagination I guess.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Also, when you&#8217;ve invested so much time to polish your cover block and make it pretty, it doesn&#8217;t make any sense to go back to the image.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. That&#8217;s so true. Yes, yeah. The next item on our list is show none as an alignment option and use contextual text to clarify the settings. There are now hints included in the alignment options, spread text maximum wide, 720 pixels wide or something like that. It explains a little bit to the user what does it mean when you change something to align wide or to full width. Some users had trouble to see, I&#8217;m one of those, to see that you can uncheck those alignments and then remove it. Now there is and option that says no alignment, just do what you normally do as a block, don&#8217;t make it wider or go out of the content. I think that&#8217;s a good addition there because I got totally and utterly confused. Oh, I can switch it just off. It was not a good.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, you had to click on the same option again to disable it, which wasn&#8217;t so straightforward.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: It wasn&#8217;t clear. That&#8217;s a toggle switch, that wasn&#8217;t clear. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I wanted to emphasize that the number you mentioned is not something that is hard colored, it depends on the theme. It is able to, the context there provides very useful information which can vary between themes, right?</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Is that coming from the theme.json file do you know?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: They probably compute it on the fly using some JavaScript.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Okay. Yeah. All right. That&#8217;s great, but we&#8217;re not done yet. What&#8217;s the next thing?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Format library.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: This is one of the options you have when you have text based blocks. Before it was only possible to change the foreground color of your text, so change it to something different. Now there is also an option to change the background color or the highlight how it&#8217;s called in other tools. The change was applied to the existing controls so now you have a pop up dialogue, I don&#8217;t know, which has tabs so you can switch between text and background and apply those different colors.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: I think that&#8217;s a feature that has been missing from the beginning for a very long time. There was something that you could do in the classic editor very easily with the little toolbars up there that you can just highlight a word in your text within the paragraph and then give it a different text color or give it a different background color. The text color was still there, is already there, but now you can change the background color of that. Yeah. You find it at the same place where you also find the text color change in your paragraph toolbar. You can now, as a theme developer you can now also set presets on the duotone for your theme. If you say every duotone, when it comes out of default, should be a blue filter or a pink filter or something like that, you can help your user to set the right duotone on certain images in the content.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. You can change it per block, so that&#8217;s pretty nice. You can say, oh, site logo, I want to have it in a red filter and that&#8217;s also possible now.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. The possibilities become endless.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. In general all the management for colors becomes so complex that now it got extracted, the color palette is in its own global styles screen. Basically you need to, when you go to the editor for editing, for changing your site, when you go to the styles sidebar, now you need to first click on the color link and then it will show all the colors you have. You can also drill down to the palette or individual elements to change those settings.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: As the next iteration, probably not for 5.9 because it takes a little more, but one of the features that will come is that you can, in that you can also have multiple color palettes to choose from or have a color palette directory where you can grab a wonderful &#8230; yeah, Matt Mullenweg actually mentioned that in yesterday&#8217;s video that there is a colorpalette.com site where you can pick the color palette that you like and then you get all the hex decimal values for it for your site. That would be so cool to actually have a source like that that can pull in new color palettes for your theme there or for your site. Yeah, this has opened so many possibilities, it&#8217;s really mind-boggling. Right now we just have these three screens, all the styles, the color styles and then the color palette separate where you can add additional colors to it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. It&#8217;s really hard to wrap your head around how colors work at the moment. If I am correct, now you have the default colors that come from the WordPress core, then you have theme styles that every theme can provide and it looks like you can also, the users can define their own colors right now.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. The hierarchy is users first, then the theme, then the core, but it&#8217;s also that the theme can say please disable custom colors, my users don&#8217;t know how to use color.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: To offset or to avoid the GeoSitters interesting page designs.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> To make it even more advanced, it&#8217;s also possible to say that, a theme author can say that for this particular block I want to have a different color palette.</p>\n\n\n\n<p><em>Birgit Pauii-Haac</em>k: Yeah, yeah, yeah. There&#8217;s also something new and I didn&#8217;t realize that until now when I see the screenshot that I was looking at here from the post. In the styles there was, up until 11.6, with the new version now you can actually go directly to the blocks to change their settings. Before you had to close the sidebar from the style, from the global styles and go back to &#8230; when you do template editing you have to go back to the blocks sidebar. There wasn&#8217;t a clear path for that. Now you can, I see here blocks is another panel that you can open there. That&#8217;s really cool.</p>\n\n\n\n<p>All right, next thing, the template editor got some new workflow things. There&#8217;s a back button now for the isolated template part editor. When you drill down you can go back up the rabbit hole again. Then also the template areas have added some template details like header and footer areas there. That&#8217;s really cool.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: When you go to the header and you click on the name of the template you are currently editing, you not only see the details about the theme template but also some details about template areas used in that template which allows you to quickly navigate to them because there are dropdown menus with additional options.</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Exactly. Yeah. Then the navigation screen still in experimental has a new feature that you can add tool tips to navigation items in their set-up states. That is interesting and helpful.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I guess it&#8217;s coming from the block editor. When there&#8217;s something wrong, the link is missing in your navigation where it should be, then it just underlines it with the squiggly line. When you hover over it it just shows you what the issue is.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. You don&#8217;t want to have in the menu a link or a menu item that doesn&#8217;t go anywhere. That helps you too. Then the next one is insert the navigation link blocks by default in the navigation block.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. Basically, when you click on the plus sign to add another item, you can start writing and it will show you a list of matching links. You can just click on one of them and that will add it to the menu. You don&#8217;t have to choose the type or you don&#8217;t, give me category page, no, we just type the name of the link and it just does everything behind the scenes.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. That&#8217;s a very nice feature because in the current menu screen you really have to know what kind of type you&#8217;re looking for. This goes away right away with that feature. I&#8217;ve got to test it, what happens with custom post types and post categories or are these pages also being surfaced. Yeah. Wow, that was a lot in this release. Do you have anything else? I think that was it, the major parts.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. We had to cover two Gutenberg plug-in releases pretty packed with features. I guess that&#8217;s a lot already to process for our listeners.</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yeah. In one sitting, yes. Let&#8217;s go to the active development and what&#8217;s discussed. I wanted to highlight again the gallery block refactor will come out of the experimental stage with the next plug-in release, that&#8217;s 11.8, that&#8217;s in two weeks. It will be in 5.9, WordPress 5.9. At the moment we&#8217;re doing the extender outreach to plug-in and theme developers to alert them to the changes. If you are one of those and/or you work for agencies but you don&#8217;t have public plug-ins or themes in the repository, then I would suggest to go to the developer note that Clan has already published a month ago on the changes so you can see if that affects your gallery handling in your theme or your plug-in. We will have it in the show notes of course.&nbsp;</p>\n\n\n\n<p>Then on the FSE Outreach Program update Anne McCarthy has another call for questions where you click on a button and have your question and then it gets sent to her inbox and then she finds the answers for that and she will publish all the questions and answers in a post later on. The deadline for getting your question in is October 27th, that&#8217;s in two weeks. Then she will, within a week, publish that post. This is also for 5.9 when full-site editing comes in with early access there that you can get your questions answered, or also your fears, either way is fine.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I think we should also include a link to the previous installment and all the answers. I think there were about 50 questions answered. That was a lot. Maybe that would be also good to check. Maybe you already have answers for your questions and you don&#8217;t have to reach out again.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Right. Yeah. I think the reason that Anne does it now at this stage is because the last one was at the beginning of the year. With the, I don&#8217;t know, six or seven plug-in releases that happened since then, quite a few things have changed, some irritations that were &#8230; because it was annoying or it was an interface that didn&#8217;t make sense, you had questions there, but that has been already fixed so the new questions certainly also in regards to the go/no go decision, I would wait until the post is out, to read through it and get &#8230; some of the answers might be in that summary post from the go/no go meeting that Hector will publish.</p>\n\n\n\n<p>Then also from the FSE Outreach Program was the summary of the theme switching experience. It was a great read. There were quite a few theme developers who had some expectations there that also went through, some site owners went through the testing and had some surprises there. Channing Ritter on the design team did some nice mock-ups on how to make it a better experience. It might not be part of 5.9, but it&#8217;s definitely something that you who sent in or did the test have influenced how the next steps are going to work.</p>\n\n\n\n<p>With that, get your questions in, think about the gallery block refactor and then live Q&amp;A October 28th with the BuddyPress team members on converting classic widgets to blocks. This is the end of our show.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. I wanted to remind everyone that we are waiting for more reviews and that&#8217;s always great to hear from you what do you think about the show. You can also ping us on Twitter or send DMs with questions, with the feedback, whatever you&#8217;d like to talk about with us. My handle is GZIOLO and Birgit is BPH.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Yes. As always, the show notes will be published on <a href=\"http://gutenbergtimes.com/podcast\">GutenbergTimes.com/podcast</a>. If you have questions and suggestions you can also send them via email to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelong@gutenbergtimes.com\">changelong@gutenbergtimes.com</a>. Well, it was good to see you. I&#8217;m glad you&#8217;re back from vacation and rested and ready to go. Thank you so much for being here and a big thank you for our listeners to stay with us so truthfully into another long episode. That&#8217;s it for me. Goodbye.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Thank you, Birgit. Thank you everyone for waiting four weeks for the next episode. See you in two weeks. We won&#8217;t do so long breaks for quite a while I hope. Goodbye.</p>\n\n\n\n<p><em>Birgit Pauii-Haack</em>: Goodbye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 17 Oct 2021 13:37:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Gutenberg Times: Changelog #52 -Planning, Scope and Team for WordPress 5.9, Roadmap for WooCommerce Blocks and Gutenberg 11.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=19056\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://gutenbergtimes.com/podcast/changelog-52-wordpress-5-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58350:\"<p>In this episode, Birgit Pauli-Haack and Grzegorz (Greg) Ziolkowski discuss Planning, Scope and Team for WordPress 5.9, Roadmap for WooCommerce Blocks, Gutenberg 11.5 Release and more&nbsp;</p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-52-wordpress-5-9#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/changelog-52-wordpress-5-9#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-19056\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<h2>Announcements</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">WordPress 5.9 Planning Roundup</a> by Josepha Haden Chomphosy</li><li><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">Preliminary Road to 5.9</a> by Matias Ventura</li><li><a href=\"https://developer.woocommerce.com/2021/08/31/peek-into-the-woocommerce-blocks-roadmap/\">Peek into the WooCommerce Blocks&nbsp;Roadmap</a> by Darren Either</li><li><a href=\"https://us02web.zoom.us/webinar/register/1616234355871/WN_TShtABQnRYKrHN6ffMFpaA\">Live Q &amp; A: Theme developer discussion going from classic to block-based Themes </a>on October 7th, 16:00 UTC / 11 am Eastern</li></ul>\n\n\n\n<h2>Gutenberg 11.5</h2>\n\n\n\n<ul><li>Make.Core: <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">What’s new in Gutenberg 11.5? (16 September)</a></li><li>WPTavern: <a href=\"https://wptavern.com/gutenberg-11-5-adds-widget-grouping-iterates-on-the-block-gap-feature-and-updates-nav-menus\">Gutenberg 11.5 Adds Widget Grouping, Iterates on the Block Gap Feature, and Updates Nav Menus</a></li></ul>\n\n\n\n<h2>What&#8217;s discussed and worked on</h2>\n\n\n\n<ul><li><a href=\"https://oandre.gal/the-developer-experience-of-presets/\">The developer experience of WordPress presets</a> by Andre Maniro</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/29882\">Gallery Block Refactor: Features and functionality to test during CFT</a> by Glen Davies</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/29102#issuecomment-919886307\">Update on Navigation Block and Screen</a> by Daniel Richards</li><li>Discussion: <a href=\"https://github.com/WordPress/gutenberg/issues/31551\">How to provide backwards compatibility for custom fields on the existing Menus screen</a>.</li></ul>\n\n\n\n<p>To get weekly updates via email, <strong><a href=\"https://gutenbergtimes.com/subscribe\">subscribe to our Weekend Edition.</a> </strong></p>\n\n\n\n<div class=\"wp-container-616f50bcdb17a wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Did you like this episode? Please write us a reviewhttps://lovethepodcast.com/gutenbergchangelog</p>\n\n\n\n<p> </p>\n\n\n\n<p><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></p>\n\n\n\n<p><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></p>\n</div></div>\n\n\n\n<h2><strong>Transcript</strong></h2>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello and welcome to our 52nd episode of the Gutenberg Changelog podcast. We’re recording this on September 16th, 2021. In today&#8217;s episode we will talk about the planning scope and team for WordPress 5.9, the roadmap for WooCommerce blocks and of course this week&#8217;s Gutenberg 11.5 release.&nbsp;</p>\n\n\n\n<p>I am Birgit Pauli-Haack, WordPress developer advocate and curator for Gutenberg Times. Again, I&#8217;m delighted to have with me on the show co-host Grzegorz, or Greg, Ziółkowski, JavaScript developer at Automattic and WordPress core contributor. Hi, Grzegorz, how are you doing today?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Hello, Birgit. I&#8217;m fine. I&#8217;m looking forward to my vacation that starts this weekend. I&#8217;m going to Greece. It&#8217;s first time since two years going abroad, so I am really excited but also not so happy about all the paperwork that is necessary to travel these days.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, with all the COVID and vaccines and all that kind of thing, is that what you&#8217;re referring to with paperwork?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes. I have five forms to fill in for myself and my family. It&#8217;s strange. I guess you know that because you traveled from the States to Germany a few weeks back.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah, we did. I scheduled my test that I have to do because the United States changed how they let people in. Now I have to have a test that&#8217;s not older than three days to get in although I&#8217;m vaccinated. It&#8217;s strange. It&#8217;s all strange.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, yeah. At least I don&#8217;t have to do any tests because I&#8217;m also vaccinated. That&#8217;s on the good side here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, on the way in we only needed to show our vaccination records and be done with it. On the way back it&#8217;s going to be both.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>Anyway, we start our episode today with an announcement, with an announcement that Josepha Haden Chomphosy published the preliminary planning for WordPress 5.9. That&#8217;s supposed to be released December 14, 2021. Yes. It&#8217;s again just before the holidays and many sites will wait until January to update, but most sites it turns out update right away. We did this, had this exercise now for the last four years I think as far as I can remember.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes, even WordPress 5.0 was released on December 8th, 9th, I don&#8217;t remember exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> 6th?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Maybe 3rd. It was in December and we had the same discussion, why it&#8217;s happening just before Christmas.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> We are a worldwide project, it is not only Christmas for people, some people don&#8217;t even know what that is and they just have their own holidays.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. The world does not stop when WordPress releases. We found that out with 5.0. The internet did not break and everything was going smoothly. I know there are a few US agencies that want to close down over Christmas and they just &#8230; yeah, I don&#8217;t think it&#8217;s a hard sell for them to say we do all the upgrades in January when we come back.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s perfectly fine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I think so too, yeah.&nbsp;</p>\n\n\n\n<p>Again, as they did for 5.8, there will be a go/no-go decision for what will be in the release. That is scheduled to happen on October 12th. That&#8217;s about four weeks ago, in four weeks, sorry. That&#8217;s in four weeks. The feature freeze will be November 9th and then beta one is supposed to be ready for November 16th. People get cracking.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I think this series is a bit smaller in the scope, so I think that those dates make a lot of sense. I think the schedule for the 5.8 was a bit longer, especially between the feature freeze there was two weeks, but at the end of the day I don&#8217;t think that matters that much.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mostly not for Gutenberg because you patch back to the WordPress right away when you have bug fixes, yeah.&nbsp;</p>\n\n\n\n<p>The scope follows pretty much what Matías Ventura published earlier this month as the preliminary scope, so we will have blocks with intrinsic web design, then the navigation menus, interface, the user interface for the theme JSON. Theme JSON was introduced for theme developers for 5.8 and 5.9 will have the first version of the interface so users can also configure their themes and their block editor through that. There&#8217;s also refining of editing flows for block themes, a new default theme and additional design tools from the block editor.&nbsp;</p>\n\n\n\n<p>Then there are a few, Josepha called them hopefuls that might get in but they might not get in. Part of it is the pattern insertion and creation features so that you can submit patterns to the directory and then also insert them directly from the inserter. Right now you have to click the copy button and then copy/paste them. For 5.9 the meta team is aiming for insertion into the block editor. Then also unzip/rollback fail-safe, there&#8217;s a whole team working on that, more PHP unit tests and then improved compatibility with PHP 8.0 and 8.1.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The last three items aren&#8217;t related to the Gutenberg at all, but in some ways they improve the overall quality on WordPress core, so it&#8217;s maybe somehow related.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. Right. Yeah. That&#8217;s that. The team is, release lead is again Matt Mullenweg with Josepha being the coordinator I think.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: And the marketing team lead.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And the marketing team lead, yeah, with that. Who else is there already in the posting?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I&#8217;ve seen that a few days before and the list was still missing a few names. I don&#8217;t know if it was updated since then.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That was quite a while ago. Here we go. September third was it published. The team, to go back to that, release lead is Matt Mullenweg, marketing and comms is Josepha Haden, technical writer is Jonathan Bossenger and those are the leads that are filled in. I think the rest is going to come together when the meeting is, the board chair meeting later on. All right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes. There&#8217;s still time to volunteer if some of our listeners want to jump in and help with the release, even as people who just watch the process and be ready for the next major release to take this leadership role.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Josepha asked for volunteers for triage lead and the release coordinators. If you don&#8217;t triage the bugs or the tickets that are supposed to go into 5.9 and see how they&#8217;re going you&#8217;re not going to get a release together. The coordinators are really important to get all the teams ready and working on this. I think there are a few volunteers already on the post in the comments section, but you can still throw your hat in the ring. That is about 5.9. I think the next date for that to watch is October 12th with the go/no-go because that will determine what exactly will come into the release from the navigation screen, new navigation blocks, see how far the gallery block, the new gallery block, refacted, is going. That&#8217;s still in the experiment. There are a few other things that might or might not come.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski: </em>Yeah. I think the most important one would be the navigation block and the navigation screen. That&#8217;s quite a huge project that has evolved for quite a while.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think over almost two years. It&#8217;s also, I just saw and we&#8217;ll see it in the updates later there are some discussions going on that our listeners might want to chime in in terms of backwards compatibility.&nbsp;</p>\n\n\n\n<p>We promised also a Woocommerce roadmap regarding blocks. Darren Either from the team put a nice blog post together with a lot of information about that, what is happening and what is in the near future or what is soon happening. The high priority is to build robust blocks for checkout and cart, the shopping cart, that not only gives the store and their customers a much better user experience but also allows for extensibility for third-party tools. The blocks will become the default way to handle checkout and carts soon. They were a little bit cagey with dates and something, but it&#8217;s definitely something to watch out for. They will also have, for the transition, fallbacks to shortcuts and the shortcuts for cards and checkout and then if the extension isn&#8217;t optimized for blocks.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. We will include also a link to the GitHub repository that contains all the blocks. There are a few of them. They are very advanced I must say. In the WordPress core we have a lot of blocks, however they are more on the side of editing content so the complexity comes only in the block editor, whereas Woo, they do something really impressive on the front-end so those blocks are interactive, they are optimized in terms of performance. There&#8217;s some really impressive work on their side. I&#8217;ve been watching that for quite a while, this is in the works for over two years now, and they are improving. Their initial implementation, it was mostly bringing back compatibility from shortcuts, that was transitioned from shortcuts to blocks. I remember the first prototype, it was creating the safe implementation, the short code and that was just not working. Their block editor experience was the change but the rest has stayed the same. They have evolved in so many ways.</p>\n\n\n\n<p>They also shared some ways for the users and shop owners, the checkout flows are now much more smoother and that leads to better conversion rates, which is the whole goal of this concept. It&#8217;s also, now you have the ability to preview how cart and checkout looks from the editor. It sounds, in our context when we talk all the time about the block editor the preview is something you just take for granted, but here we are, it&#8217;s improvement in their workflows. They were also talking about the iterations they are doing and how they are trying to use InnerBlocks to structure or architect their blocks. That&#8217;s also a great way when they are presenting in the post how it empowers users to add their own integration pretty easily. You have now a checkout form and you can inject any type of blocks, you can add a heading in any place you want, you can add, I don&#8217;t know, an image. Whatever you like you can add there and also reorder items like change headings. It&#8217;s something that wasn&#8217;t possible before and this just opens new possibilities.</p>\n\n\n\n<p>I&#8217;m also happy to see that this flow is now becoming the default one, because it was present but it was only for some extensions that were in Woocommerce store by default. Now it&#8217;s open also to plug-in others. That&#8217;s the biggest change.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I really like how Darren put the post together. He has many, many screenshots in there so you get really a good picture of what&#8217;s going to happen. Check it out. There&#8217;s also some work being done to prepare Woocommerce for the site editing feature that&#8217;s coming to 5.9 somehow, or 6.0. I think it was good for the Woocommerce team to wait until the block editor was a little bit more stable and had more features for extensibility. I&#8217;m glad that they found it now worthwhile to put it together and that the user experience is up to the quality that they wanted to. That will open up the signal also for other plug-in developers and also gives quite a nice set of example code that you can study if you are into reading code. As Greg said, we&#8217;re going to share not only post the show notes, but also the GitHub repository so you can check it out.</p>\n\n\n\n<p>Now I have the last announcement, then we get to the release, our next live Q&amp;A on the Gutenberg Times YouTube channel will be October 7 at 16:00 UTC, 11AM Eastern and 18:00 Central Europe Time. Sorry. Got all the times mixed up again. That is pretty much the story of this week for me. I go either way and I always go wrong, so I need to read it and pronounce it right. October 7, 16:00 UTC. We will discuss with experienced WordPress theme developers how they transition from building a classic theme to a block based theme and using theme JSON and also full site editing and the global styles as far as it&#8217;s already available.&nbsp;</p>\n\n\n\n<p>We will have as a guest Ellen Bauer. They published just recently their Aino theme. That is their block based theme and they have additional features in there that will cover that. Carolina Nymark, who&#8217;s on the themes team and also worked on the 2021 blocks, TT1 Blocks theme, that&#8217;s the block based 2021 product. She also has a site called full-site editing where she teaches full-site editing to theme developers. It&#8217;s great to have her on the show. Then the last one is Andres Norén who designed the 2020 default theme last year. He&#8217;s working on a new theme as we speak. Oh yeah, by the way, his theme Eksell is actually powering the Gutenberg Times site for, I don&#8217;t know, half a year now. I&#8217;m glad to have those two, Ellen and Carolina and Andres, on the show on October 7th.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I think the line-up is just so great. I&#8217;m looking forward to this Q&amp;A session. I think you did a great job convincing all the people who have so much experience building full site editing themes to be on the show.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I&#8217;m really happy that they all make the time to educate our community on this. Also not only to be on the show, to take the time, but also take the time and work through this because we all know that, if you are an early adopter, you basically do all the bug testing and quality assurance for the team, but you also have to invest a lot more time because of course documentation is not yet complete or changes. It&#8217;s a major undertaking and I&#8217;m glad that these three are coming to the show and telling us what they have found.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. There is also this bright side that you are on the bleeding edge of innovation and you are part of the process and you influence how this all shapes up.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Absolutely.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think it has more pros than cons.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, absolutely. Looking back, the three years, block editor, most of the early adopters have had, really a jump on the new technology and, yeah, were supported by big acquisitions or hired just right away because of their expertise that they have shown. It will be similar to theme developers that are early adopting these new features, even if it&#8217;s a little bit of a heartache or a headache, more a headache. It&#8217;s the cutting edge, indeed. Sometimes it&#8217;s the bleeding edge, you&#8217;re right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. In this context, which makes me very happy, is that all three invited guests, they are in the community for quite a while and they seem to be aligned with the vision and they are adjusting their themes to be up-to-date, which is really impressive.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, they totally get the vision. All three of them have published quite a bit of their learnings. Yes, I will share a few links in the show notes so you can check them out, but definitely sign up for, register for the live Q&amp;A so you get also your questions answered.</p>\n\n\n\n<h3><strong>What’s Released &#8211; Gutenberg 11.5</strong></h3>\n\n\n\n<p>That brings us to the Gutenberg 11.5 release. We are, as of today there is not a final release yet because there&#8217;s some problems with the build sequence.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, it&#8217;s some turbulence like during the flight. I mean everything is ready, it&#8217;s just the process didn&#8217;t end up successfully and it&#8217;s more of the technical challenge of the release process itself than something is wrong. Yeah, I hope at the time when this podcast will be produced and ready then the release will be out, hopefully today. We said the date for recording before assuming that everything goes out on Wednesday as usual.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. Well there was, the 11.5 release candidate is out or has been out for a week, so that&#8217;s what we are basing things on. There weren&#8217;t any changes on it from the features or the PRs, it&#8217;s just the build process.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes.</p>\n\n\n\n<h3><strong>Features</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. We have a few new features. Do you want to talk us through it?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. Let&#8217;s start with the block support changes. In the previous episode we mentioned that gap block support feature. That was still an experiment. It was implemented on the team JSON side, but it was disabled by default. Now we have this support, there&#8217;s a UI for that. It&#8217;s pretty simple. In the dimensions panel, if I recall correctly, we have this control that allows you to change the gap between blocks. The name is still to be settled as far as I know because it has some, in the world of design there is something similar that might be confusing, but it was, you just change the numbers and it just increases the spacing between blocks.&nbsp;</p>\n\n\n\n<p>Related to that there is also a change in the group block. At the moment the group block has this layout option, layout control that allows you to change how it is presented. By default it just uses, every block in the group is in its own row, however this new feature is just integrated with the inserter that inserts a group block with every block in the same row. They are aligned, next to each other in one line, which is pretty nice for some complex designs. This is just, it was there in the group black, it&#8217;s just the new way of discovering this feature in the inserter, in the slash inserter when you are typing in the prompt in the editor.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s the first implementation of the Flex layout that I think Riad actually put the basis in for with 11.4. Now this is the first iteration where one block is actually using that. Of course there will be more. In the PR, if you want to follow up on that, there are some links back to the Flex layout.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, but I think the Flex layout we talked about one or two episodes before.</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. Yeah, but there was not a block that came with it out of the gate. It&#8217;s also part of what&#8217;s in 5.9 being the intrinsic design of pages. There will also be, another change is actually that the bug report form, which is one of the most important forms on the GitHub repo, has received some changes. The ones that are here in that release are more cosmetic but I wanted to point it out, the new template feature of GitHub is now used and they created a new bug report form to remind people of all the information that would be helpful if someone would take on an issue to fix it. I encountered quite a few issues where we needed to find out what actually the user used, what versions they are or what are the steps to reproduce it. Those are very important information. If we have to read minds what&#8217;s actually happening, we might not get to reproduce the error or the quirkiness that is and we have to go back and ask for further information. That is just delaying the time of the fixing.&nbsp;</p>\n\n\n\n<p>Following the form is now much easier and you don&#8217;t forget anything. I also wanted to point that out for those who are in the GitHub repo. Let us know, or let the team know when there is something to be fixed or not working right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, that&#8217;s a nice change. Usually it sends up someone needs to ask for more details. After a few weeks, if there is no answer, the issue is closed, which isn&#8217;t something we really want. It is just the reality because we cannot reproduce the issue.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. There&#8217;s no questioning the experience of the person who posts it, it&#8217;s just we need to see it, we need to be able to reproduce it to locate where the code change needs to happen to actually fix it. It&#8217;s just saving a lot of time and being very specific in what&#8217;s not working. Yeah. Yeah. Next the block library has got some new enhancements. One of them is using the block gap between column blocks, so that is another iteration of a new feature. Now you can….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, but this has only changed on the CSS level for now. As the rich table in the PR set, it&#8217;s a stop gap for block gap.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Nice, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Fun with words. Yeah, but that&#8217;s the direction, I guess. Most of those layout related blocks should start using those design controls, elements, to make the experience more cohesive. That in general is the direction where it&#8217;s heading.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. There was an article in the WP Tavern about what controls somebody could use, should use or should be having out of default and not changeable, who&#8217;s having control over themes? I think there were some misunderstandings. Matías went into the comments section and clarified a few things regarding that. If you come across an article go into the comments and see what Matías has to say as well. Matías Ventura, the spark of Gutenberg, just to reiterate that.&nbsp;</p>\n\n\n\n<p>The video block got an enhancement to use the existing video poster image on insert. The video block has become quite powerful and quite flexible. There are six or seven different settings that you can have in the sidebar that you can switch on and off. This issue or feature is now that, once you assign a poster image to the video the first time, it remembers it. When you embed it into a page or post again, because it&#8217;s in a different context or it&#8217;s in a series of videos or something like that, you don&#8217;t have to assign the poster image again, it will remember it. It&#8217;s all about the effort to streamline the content creator&#8217;s workflow.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There is also a change in the query pagination next and previous blocks. They are very low level blocks that construct the query pagination, which is part of Query Loop Block, but it shows how flexible the InnerBlocks paradigm is. There is now an arrow attribute that syncs next/previous block arrows.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It was there before, but it wasn&#8217;t really good, visible in the sidebar or for people to check on. Now they are real settings that are big buttons that you can click so it changes. You were always able to change the text of your pagination from next to previous page or something else. You say low level, but it&#8217;s also quite an important block because, when you get to full-site editing and you write your own templates and you have a list of block posts from a category or from a tag and you have multiple pages of those, you want that query pagination to be available and also be usable. It&#8217;s quite interesting, especially for publishers that have online magazines or so.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There&#8217;s also a change in the post outer block. You&#8217;ve got duotone support. At first I was surprised seeing that, but there is an avatar or the image of the user which got this feature, which is, again, a good to have way to apply similar effects to all images on your page.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, or just make it blend in more into the overall design because it&#8217;s a small avatar. To normalize it amongst all the others that you have on your site. There&#8217;s also, the wide alignment control now is only available if the theme provides the layout wide size setting. I think that&#8217;s a change to, so you can adjust that setting through the theme JSON again and not have to &#8230; yeah, you don&#8217;t have to do it through the functions PHP now.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. I think in the past you would enable full and wide at once, so it just gives you more grand control over those features.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, you can now decide, okay, I only want the wide but not the full, or you only want the full but not the wide kind of thing. Yeah. That&#8217;s a good point. Yeah. Thank you.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There is also a quite important change for the navigation screen that&#8217;s being in the works and preparing for the final release. They are the undo and redo buttons in the editors, it&#8217;s the same feature that you have for the post content editor in the headers, it was just missing there. Definitely an important change.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh yeah, yeah. All in the streaming of the content creator&#8217;s workflow. Streamlining, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. It&#8217;s also related to the keyboard shortcuts. Some of you probably use command Z and command X. No.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The redo? I don&#8217;t know. I never redo, I only do undo.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, command Z is the most popular one because you want to go back.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, I need to find out what the keyboard….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, check this out in the Gutenberg editor when you go to the header and there is three dots, menu, then you have keyboard shortcuts as one of the options. That&#8217;s the simplest way to check all the shortcuts and learn new if you don&#8217;t know them yet.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah. There were other changes to the navigation screen. I just wanted to remind our listeners that it&#8217;s not yet in the plug-in per se, it&#8217;s still in experimentation so you need to go to the Gutenberg menu and the WP admin experiments section and then check the navigation screen so you can test it for yourself and try and help us get it tested and do a lot of bug fixes, bug reports there. There is also a change, the REST API team is working on creating the end points for the navigation editor for the menu. At the moment I think it&#8217;s all through the admin Ajax. The final version will use the REST API like any other places in the block editor.</p>\n\n\n\n<p>Yeah, speaking of screens there&#8217;s a widget editor. It now received a widget group block for the widget screen which is quite nice now to follow the idea of classic widgets where you have a heading and then a widget. You can change the title of it and now you can add the heading and the widget into a group and then get it a little bit more contained and keep it together, style them and have a background of it and all that. It&#8217;s more what the user was accustomed to when dealing with widgets, the widget group helps with that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. I would say it&#8217;s more to bridge the experience for everyone familiar with the widgets old screen. It seems like a good change in that regard.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I like it, yes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I don&#8217;t know how it works technically. When you insert a widget does it wrap it with the group out of the box now?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think you can highlight, like you do in the post editor, you highlight the things that you want to group and then you transform it into a widget group.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. The widget group has all the group block settings as well in the sidebar. All right.&nbsp;</p>\n\n\n\n<p>There are some enhancements for the global styles or fixes. Now you are able to disable text and background colors via the theme JSON. I thought you were doing that before, but maybe it didn&#8217;t work.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. As far as I know it&#8217;s related to some mock-ups that were presented. The idea is that you would be able to disable almost all the color customizations one by one. Maybe that worked only for the link before. There&#8217;s a few.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. I think they changed a little bit the logic on how sub-components are shown in the color panel. Link color is enabled when the block supports it, the theme supports it, it&#8217;s launched by default. Yeah, it needs to be switched on or even the presets contain some solid value or the custom colors are used. Presets have some color. You need some color presets and the same is true for the text color, the background color and the gradients, although the gradients, you need to have either the custom colors in there or it&#8217;s empty, it&#8217;s disabled. For both the link color, text color and background color the block needs to support it, the theme needs to be supported and the defaults are different for each of them. Then the presets need to contain values for it. That&#8217;s quite a good set of logic there.&nbsp;</p>\n\n\n\n<p>Yeah, they streamlined all that logic and then now they are making the global styles available for all themes. That&#8217;s in PR 34334. I like that number, 34334. The preset classes for colors and font sizes were in the block library and they are now part of the global styles sheet that&#8217;s loaded later. That&#8217;s a change in the style sheets that are included by default. Then the preset classes look like the preset dev class. There are some changes. If you need to target those classes you might want to look at this again here. There is a post.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I just shared a link with you from André is who one of the lead developers on the global styles project. He explains how the experience of using WordPress presets looked before team JSON and how it&#8217;s changed, how it got simplified. That would be a good read in this context. Also in the same PR that we are talking about, this 34, 334, there is a dev note sketched already that will be published later in the release process of WordPress 5.9. It also just covers what you, Birgit, just said. It&#8217;s pretty complex, so I guess that&#8217;s something that you should process at the time of learning how to use those presets.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Then the media placeholder experienced another change. For now you can create a URL, if you wanted to add an image through the URL of the image you only could use absolute links. It needed to start with HTTP because it was a URL input type on the placeholder and that has changed to a text input type in some verification. Also now you can actually use local URLs. If you know the URL of your image that you want to add to a gallery or to a post, you can now use local URLs and don&#8217;t have to put in the domains, which is actually good when you move the site or move the site to a different domain, or you have just an image that&#8217;s somewhere in a different place than on the WP content uploads directory. That&#8217;s definitely a good thing that&#8217;s ….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I personally was surprised that when you are using an input HTML tag, when you set the tag to URL it expects the full URL. That was the original issue that caused….</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. Caused this change, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> &#8230; this change. Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think it was only Firefox, but the browser developers are really tightening up the browsing experience. That was a part of their verification so you wouldn&#8217;t be able to add it to that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There is also a quite important change for team developers. Now there are default editor styles that are applied to teams without team JSON and without editor styles. Sounds complex, but it&#8217;s just something that is even considered for the minor WordPress edits like 5.8 to now. It just adds some basic styles to all sides just to ensure that the experience is better for the block editor in particular.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. This plays well out of the box even if the theme editor, the theme developer has not updated a style sheet for the theme. I think that&#8217;s a good place for the adoption of the block editor that we are all working towards, that more and more people adopt that, especially in the themes. If it&#8217;s nice looking out of the box and they don&#8217;t have to go back to the theme developer to style a column or to style images or the widened and full width or the media and text, that there are quirks, I think that&#8217;s a good decision now that theme developers can control it through theme JSON and their own editor styles. They can just the default styles. Yeah, that&#8217;s good work there.</p>\n\n\n\n<h3><strong>New APIs</strong></h3>\n\n\n\n<p>Ah, here it is. Of course, every time, and you hear me say this on this podcast quite a bit, every time you have a new feature you also need to provide the opt out of the feature. Here it is, allow themes with theme JSON to opt out of the block gap styles. There is a mechanism there how you do this.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I think it&#8217;s also related to the fact that it was opt in add styles, so now that&#8217;s probably, it has become a default so now you need to have a way to disable that if you don&#8217;t like that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Now we moved also to the new API sections with this item on the list.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, yeah. Yeah. We have so many sections in this release note.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes, it&#8217;s very long this time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s very nice, yeah, but it&#8217;s also &#8230; it&#8217;s pretty much in the settings of your theme JSON. It&#8217;s settings, spacing, block gap, null. That&#8217;s how you opt out of that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Quite a common way for all those global style related features. That&#8217;s the only item in the new API. Now it&#8217;s time for bug fixes. As usual, the list is very long.</p>\n\n\n\n<h3><strong>Bug Fixes</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> There seem to be not really big boo-boos that we have fixed. You find in the list under the block library fixes for the gallery block. I wanted to point out that those are referring to the gallery Refactor. This is the newly created gallery block. It&#8217;s still an experiment in the Gutenberg plug-in. If you want to do the navigation screen and test the new gallery block, you have to enable them also on the experiments screen of your Gutenberg plug-in.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> You can always test the new gallery block on the new navigation screen and that&#8217;s two things at once tested properly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> But don&#8217;t do this in production. It&#8217;s called experiment for a reason. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I mean for new websites I wouldn&#8217;t worry at all about enabling the new gallery factor block. I think the fact that it&#8217;s in experiment still is only because of backward compatibility.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I would not say only. It&#8217;s a big part. It&#8217;s a big part and it&#8217;s also part of the headaches that they have, but it&#8217;s also &#8230; if you want to switch it on and you need a list of test instructions, I&#8217;ll link in the show notes to the GitHub issue 29882, 29882, because there&#8217;s a list of 40 tests that you can do, everything that you can do with a gallery block, you should do. We are preparing, on the developer relations team we are preparing an official call for testing that would hopefully get more people involved. We will also reach out to the plug-in developers to make sure they know about the new plug-in, new gallery block and update their features.&nbsp;</p>\n\n\n\n<p>I know that the developer team has already tested the full plug-ins like CoBlocks and Jetpack blocks gallery blocks, but there are many, many more that need to be tested. If you have questions about that, feel free to DM me. Send me a direct message on WordPress Slack at BPH. Again, the test instructions that are right now out, that also the developers use, is the issue 29882, 29882. Of course we&#8217;ll link in the show notes. I just want to make sure that everybody knows this is coming and it&#8217;s cool.&nbsp;</p>\n\n\n\n<p>What&#8217;s the Refactor? We talked about it before, but we always have new listeners. The gallery block as it is now is just a feature parity with the old classic editor gallery block where you have a list of images and then they&#8217;re all pulled in, but you&#8217;re not able to do much with those images except for moving them. You&#8217;re not able to adopt styles that are only for one image. The new gallery block is now a collection of single image blocks with which come all the features that you can do from an image block like obviously duotone, be it applying styles, applying backgrounds, adding a different link to each image and all these nice features. It&#8217;s a much richer experience for editors and you have much more freedom for it. It needs quite a few testings. Because of that switch of the InnerBlocks the extensions will change as well. I tested it about two months ago and I found that the gallery plug-ins that I used were working fine, but I&#8217;m not using all of the gallery blocks. It might have changed because there was some development on that. Yes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, definitely the best part here is that now it doesn&#8217;t matter whether you are changing a dual image not a standalone block or it&#8217;s part of the gallery block, you have everything unified, the same controls, the same capabilities. It&#8217;s pretty cool to see that working this way.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Also all the extensions that you have for the image block are now also in the gallery block which is cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Cool is the right word.</p>\n\n\n\n<p>Grzegorz Ziolkowski: Yeah. We are still on bug fixes. One of the changes that landed is for the writing flow, it&#8217;s in the block editor now. When you merge two blocks together the current position of the cursor is put in a better place than before. I don&#8217;t know what exactly was the issue, but it&#8217;s very annoying when you need to use arrows to move the cursor to the proper position when you change this type of modification, like when you have two paragraphs or similar text-related box.</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Then we get to the experiments but we have been talking about experiments before. Now you are able to put in the navigation block the site title as well as the logo and that makes it much nicer to assemble a header for a site when you use full site editing with that. It&#8217;s now really easy to have a logo and the site title and then the menu all in one line. Try it out and see if that works for you.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah. I&#8217;m looking forward to see how the gallery block will evolve because the same feature that you have now in the navigation block could work there as well. I can imagine that you could inject a site logo also inside the gallery because why not, that would be also in some ways &#8230; you could have some designs where that would work. In general, the idea of InnerBlocks, this is what we really want because it just opens so many possibilities for designs that weren&#8217;t possible before. You had to hard code that in HTML in your PHP files and now it&#8217;s at your site, you just need to move some blocks around, insert something and then it just aligns nicely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s a good point, because now you could have, a three by three grid of images at the center could actually be a poem or something like that that is not an image but a text. The InnerBlocks really open up quite a few more possibilities, especially on the gallery block. That&#8217;s why the Refactor is so important and also that&#8217;s why it takes a little longer to merge into the plug-in because there are some things that need to be changed for backwards compatibility.</p>\n\n\n\n<p>We also get, the social links now use the Flex layout. That means you can arrange the social links either vertically or horizontally I think and also have the block gap in between so you can have the distances also controlled. All kinds of different things are available now in the social links block.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Those design tools are really powerful. I&#8217;m looking forward to having them all stable and released as part of WordPress 5.9. I hope it happens.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> We need testers. We need people who test things. The more bugs you find, the better the release will be in 5.9.</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Now we are at the documentation. This section, do you see something that is a bigger one? There is a lot of typos that were fixed or some tooling that was improved like ESLint, something that is more in general for the Gutenberg project. Some improvements to bring the documentation up to date, like replacing, we select calls from WordPress data package to use, a react hook which is called useSelect.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Good point.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. I guess there isn&#8217;t anything very important that we have to mention today. Again, there&#8217;s a code quality. This section, it&#8217;s very long.</p>\n\n\n\n<h3><strong>Code Quality</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But that&#8217;s your favorite section, right?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I mean it depends what&#8217;s inside it. There are some changes to bring code up to date, similar to what I said about using most recent APIs that were developed and some errors which is &#8230; for those who don&#8217;t know there are some special validations for the code quality that helps us catch some bugs. Whenever they show up or the tools get updated and they are better at catching those bugs we try to fix this as soon as possible.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Excellent. Yes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There&#8217;s a lot of refactoring that doesn&#8217;t have any impact on the user interface but helps for the longer, in terms of long term support for the project.</p>\n\n\n\n<h3><strong>Various</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, I get it. That brings us also to my favorite section, the various section. There&#8217;s one item in there that I wanted to point out, that&#8217;s the vertical heading levels menu. When you insert a heading into the block editor, you get a list of levels, H2, H3, H4, H5, H6. Now you can have, the heading can now be vertical. I think it&#8217;s by default vertical now instead of horizontal as it was before so it only covers a certain different amount of content when you have the toolbar right next to the block. It&#8217;s quite nice to look at that. You just go with the mouse pointer up and down instead of left and right. That was a bit ….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. I think initially in the first release it was also vertical, but then, at that point, there were only H2, H3 and H4 options in the menu so it was short and it was quite easy to &#8230; on the visual level it would look better, but then you had six options like right now and there was also text for each of them. It just was too much to see H1 and heading one, this is why those iterations were applied now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It also came from the query block, when you have other, not only the heading block but also the post title block or the archive title, then the context of that menu was a little bit different and you were covering up too much of that query block that you tried to template things.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Right, right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. That was the other part. The heading is now multi-usage so to speak and not just a mere heading block. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski: </em>Yeah. The last item is a very important one. I hope that&#8217;s not the case for our listeners, but if you are using WordPress 5.6 then the Gutenberg plug-in won&#8217;t be supported anymore in that version. You need to have at least WordPress 5.7 to be able to still use the Gutenberg plug-in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> To use the newer version of the Gutenberg plug-in.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: In general we recommend using the latest one because that makes everything so much easier, but we also know that, when there&#8217;s a new major version, some sites cannot be immediately updated. We wait for one more major release, but in the future we consider that this period of time would be shorter, maybe two months, three months, something like that. It also depends on the major release cycles. Now this year we have only three major releases. The plan initially was to have four. That wouldn&#8217;t be that much of an issue. With three releases it&#8217;s just too much time when we have to support code that is no longer necessary in the plug-in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. To make this specific, if you are on 5.6, only Gutenberg plug-in until 11.4 will work with your WordPress. You can use the plug-in but you won&#8217;t get the updates after, unless you upgrade to the next version, 5.7, in your WordPress. I don&#8217;t know if I made it clearer.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. I don&#8217;t know, I don&#8217;t want to test that, but &#8230;.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well if you have any questions, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Encourage everyone to stay on the latest major version which is 5.8.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes, 5.8.1, yes. All right.&nbsp;</p>\n\n\n\n<p>This was the Gutenberg 11.5 Changelog. It&#8217;s quite an interesting mix on that, but most of them are design tools and theme related and some of them are related to some blocks and also for the content creator flows. It&#8217;s a nice release again with a lot of people bringing &#8230; we have quite a few new contributors now on the Gutenberg repository which is a nice change.</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>Now we are coming to the section of what&#8217;s in active development or discussed. Because it&#8217;s so &#8230; the next big thing that comes into WordPress is the navigation block and screen, or that&#8217;s what everybody&#8217;s hoping. Daniel Richards posted an update on what are they working on. Of course it&#8217;s slow progressing and they&#8217;re migrating the navigation editor, I mentioned it before, to the REST API. Those changes have been merged and it&#8217;s all updating now. Lots of UI changes that are working now, the top bar, the editor top bar being updated, the main block inserter added and then fixes for the block styles.&nbsp;</p>\n\n\n\n<p>Now I can put the important part, good discussion is on the way, he writes, on how to provide backwards compatibility for custom fields on existing menu screens. That covers the part where now the plug-in advance custom fields has a section where you can augment the menu, in the classic menu, with additional fields and additional information. The discussion on that issue is how far should that &#8230; the team works under the assumption that it needs to all be backwards compatible and it&#8217;s the issue &#8230; if you want to follow up and not go to the show notes, 31551 is the issue with the navigation screen menu items custom CF options. There&#8217;s a discussion, Elliot Condon, the lead developer on the plug-in, is in the discussion as well, so help make this, we need you to also chime in.</p>\n\n\n\n<p>Then what they&#8217;re working on next is that they want to have &#8230; in the current editor, menu editor you can say, &#8220;Okay, give me all the posts or all the pages.&#8221; You&#8217;re bulk adding links to your menu, that&#8217;s still in the works for the navigation screen, the block-based navigation screen and also to have theme JSON controls to configure the navigation block further. That still is in the works.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It sounds like a lot of work to me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Those all &#8230; yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. I&#8217;m sure all of those tasks are in progress, however to take them to the finish line is going to be quite a huge challenge because we have four weeks between go/no-go dates, so it really depends. Also I could envision that the new navigation block would be included in core but maybe not the navigation screen. There is a lot of ways to proceed in this regard. Let&#8217;s see how it works. I hope that the screen will be enabled. Opt in is the only option they consider, similar to the widget screen, that you need to enable yourself.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah. I think so, especially with the backwards compatibility. These menu plug-ins that are out there, it&#8217;s not only the advanced custom fields plug-in that modified the menu pieces or menu entity or the link entity in the menu screen or menus, there were other plug-ins, albeit the Mega Menus, albeit some others. They need to be backwards compatible. Oh, the other part was naming menus. When we build sites we sometimes have a footer menu, a header menu and a main menu and we need to name them and make them available to pull in into any other screens there and make them available for full-site editing as well. There are a few things that this powerful feature in classic WordPress, it&#8217;s hard to reproduce it and be as flexible as it is now.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Okay. That&#8217;s all about the announcement. I just wanted to remind that I&#8217;m taking time off. Unfortunately that coincides with the next Gutenberg release. Together with Birgit we decided to skip recording in two weeks. We cover two Gutenberg plug-in releases in one episode and that should be available for you in four weeks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s right. We will take a break from the podcast. I hope you are subscribed to the newsletter of the Gutenberg Times so you can still get some updates in between, or just visit the website in between.&nbsp;</p>\n\n\n\n<p>Before the end of the show I want to remind you that there is actually a live Q&amp;A coming up on October 7 at 16 UTC, 11 Eastern, when we discuss the building, going from building classic themes to building block based themes with Ellen Bauer, Carolina Nymark and Andres Norén. We will entertain you there and answer all your questions. I&#8217;m thinking I will ask them to actually stay for, instead of 60 minutes to 90 minutes, because we will have some demos and we want to make sure that we answer all your questions.</p>\n\n\n\n<p>There will be a link on the homepage of the Gutenberg Times and of course we will have it in the show notes.&nbsp;</p>\n\n\n\n<p>As always, the show notes will be published on <a href=\"https://gutenbergtimes.com/podcast/\">GutenbergTimes.com/podcast</a>. This is episode 52. If you have questions or suggestions or news you want us to include, send them to <a href=\"mailto:Changelog@GutenbergTimes.com\">Changelog@GutenbergTimes.com</a>. That&#8217;s <a href=\"mailto:Changelog@GutenbergTimes.com\">Changelog@GutenbergTimes.com</a>.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I just wanted to remind that you also can reach out to us on Twitter. My handle is G-Z-I-O-L-O. You, Brigit, is B-P-H, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. Right. Well I say thank you, Greg, Grzegorz, it was again a great pleasure talking to you. I wish you a wonderful vacation in Greece. Until the next time.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Thank you, Birgit and our listeners for being with us. You, Birgit, I wish you a pleasant flight back home. See you all in four weeks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right. That&#8217;s it. Thanks for listening. Goodbye.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Oct 2021 19:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"Gutenberg Times: Changelog #51 – Automattic Becomes a Sponsor, new Gallery Block, Theme.json, and Gutenberg 11.4 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=18882\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://gutenbergtimes.com/podcast/changelog-51-new-gallery-block-theme-json/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60542:\"<p>Birgit Pauli-Haack and Grzegorz (Greg) Ziolkowski discuss Automattic becoming a sponsor of Gutenberg Times and Gutenberg Changelog, Classic Editor, Frontity, Theme.json, the Gutenberg 11.4 Release and more. </p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-49-drag-and-drop-flex-layout#shownotes\">Show Notes </a>/ <a href=\"http://changelog-51-new-gallery-block-theme-json#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-18882\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<h2>Announcements</h2>\n\n\n\n<ul><li><a href=\"https://twitter.com/bph/status/1432272585404915713\">Birgit Pauli-Haack joins Automattic as Developer Advocate</a> (Twitter) </li><li><a href=\"https://frontity.org/blog/frontity-is-joining-automattic/\">Frontity announced they joined Automattic</a></li><li><a href=\"https://wptavern.com/automattic-acquires-frontity-founders-to-work-full-time-on-gutenberg\">Automattic Acquires Frontity, Founders to Work Full-Time on Gutenberg</a> (WordPress Tavern)</li><li><a href=\"https://wordpress.org/news/2021/08/an-update-on-the-classic-editor-plugin/\">An Update on the Classic Editor Plugin</a> </li><li><a href=\"https://wptavern.com/wordpress-classic-editor-support-extended-for-at-least-another-year\">WordPress Classic Editor Support Extended for at Least Another Year</a></li></ul>\n\n\n\n<h2>Community Contributions</h2>\n\n\n\n<ul><li><a href=\"https://frostwp.com/\">Frost theme</a> by Brian Gardner</li><li><a href=\"https://wpaino.com/\">Aino theme</a> by Ellen Bauer and Manual Esposito, </li><li><a href=\"https://tellmeaboutblocks.com/2-how-rich-tabor-created-the-markdown-comment-and-todo-list-blocks\">Tell me about Blocks podcast episode 2 w/ Rich Tabor</a>, hosted by Michael Schneider</li></ul>\n\n\n\n<h2>What&#8217;s Released</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/09/01/wordpress-5-8-1-rc-1/\">WordPress 5.8.1 RC, final release September 8th, 2021</a></p>\n\n\n\n<h3>Gutenberg 11.4</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">What’s new in Gutenberg 11.4? (1 September)</a> </li><li><a href=\"https://wptavern.com/gutenberg-11-4-overhauls-galleries-adds-axial-padding-for-buttons-and-lays-groundwork-for-global-spacing\">Gutenberg 11.4 Overhauls Galleries, Adds Axial Padding for Buttons, and Lays Groundwork for Global Spacing</a></li><li><a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Gallery Block Refactor Dev Note</a></li><li><a href=\"https://make.wordpress.org/core/handbook/glossary/\">Core Handbook / Glossary</a></li></ul>\n\n\n\n<h2>What&#8217;s in active development or discussed? </h2>\n\n\n\n<p><a href=\"https://matiasventura.com/post/the-theme-json-horizon/\">The theme.json horizon</a> by Matias Ventura</p>\n\n\n\n<h2>Discussion on Twitter and beyond:  Building Blocks with JavaScript and PHP </h2>\n\n\n\n<ul><li><a href=\"https://twitter.com/markjaquith/status/1432461667187765251\">Mark Jaquith </a>(Twitter)</li><li><a href=\"https://twitter.com/riadbenguella/status/1432645771535568899\">Riad Benguella</a> (Twitter)</li><li><a href=\"https://twitter.com/lrs62318876/status/1432699364313636877?s=20\">Lars Gersmann</a> (Twitter)</li><li><a href=\"https://twitter.com/swissspidy/status/1432608191196667906\">Pascal Bichler </a>(on Twitter)</li></ul>\n\n\n\n<ul><li><a href=\"https://github.com/youknowriad/blocky\">POC: Blocky</a> (GitHub)</li><li><a href=\"https://helen.blog/2021/08/exploring-custom-blocks-from-a-php-centric-developer-ux-point-of-view/\">Exploring custom blocks from a PHP-centric developer UX point of view</a> by Helen Hou-Sandi</li><li><a href=\"https://wptavern.com/a-world-where-some-block-development-is-merely-a-templating-system-with-no-build-process\">A World Where (Some) Block Development Is Merely a Templating System With No Build Process?</a></li></ul>\n\n\n\n<div class=\"wp-container-616f50bd1ce80 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Did you like this episode? Please write us a reviewhttps://lovethepodcast.com/gutenbergchangelog</p>\n\n\n\n<p> </p>\n\n\n\n<p><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></p>\n\n\n\n<p><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></p>\n</div></div>\n\n\n\n<h2 id=\"transcript\"><strong>Transcript</strong></h2>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello, and welcome to our 51st episode of the Gutenberg Changelog podcast. In today&#8217;s episode we&#8217;ll talk about Automattic becoming a sponsor of Gutenberg Times and the Changelog, theme.json, Gutenberg 11.4 release and a lot more.&nbsp;</p>\n\n\n\n<p>I am Birgit Pauli-Haack, curator of the Gutenberg Times, and I&#8217;m here with my co-host, Grzegorz Ziolkowski, JavaScript developer at Automattic and WordPress core contributor. Hi, Grzegorz, how are you today?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I still feel energized and extremely excited after all the big news shared this Monday in the context of the Gutenberg project. Maybe you should speak first. How have you been lately? Has anything interesting happened?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. That&#8217;s funny. Yeah, it&#8217;s been a wonderful week, though.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>I have fabulous news and some of our Gutenberg Times subscribers already know that. People who follow me on Twitter know this, but I&#8217;m thrilled to announce that on Monday, August 30th, I started as a developer advocate at Automattic. Grzegorz and I have been co-workers for five days now.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yay! Congratulations. I can&#8217;t think of anyone else who fits better for this role.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, thank you. You&#8217;re too kind. Like many people who responded and shared on Twitter, many are podcast listeners, as I said, and I was overwhelmed by all the kindness in the WordPress community. Thank you to everyone. Sometimes Twitter really shares its love and I took it all in. Well, it was overwhelming, and a lot of people have reached out. And so thank you.&nbsp;</p>\n\n\n\n<p>So, Automattic is now main sponsor of the Gutenberg Times, the Changelog podcast, and our live Q&amp;As and my work working on it.&nbsp;</p>\n\n\n\n<p>Being part of the WordPress developer relations team feels like coming home to me. And I&#8217;m deeply grateful for Automattic for offering me that position. The best is yet to come for Gutenberg and publishing with blocks. I&#8217;m elated to be part of an astonishing team that takes the worldwide WordPress community to the next journey.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes, so I&#8217;m really glad that you will be able to dedicate 130% of your work time to help people to get to their next level when hacking with Gutenberg. And I&#8217;m highly impressed with what you were able to achieve as a volunteer, in addition to other duties that help you to pay the bills. So I can also imagine how much of an impact it will make on the community now. I said there is more news to share. What else has happened?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, on Monday, Frontity announced they joined Automattic too. So Grzegorz, can you describe what Frontity framework is, and how this fits into the Gutenberg roadmap?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So for those who don&#8217;t know Frontity, it&#8217;s a &#8230; how they call it? Server-side dynamic framework for headless WordPress sites and blocks. So in some ways, it&#8217;s similar to Gatsby for those who know the space of headless or decoupled WordPress. The biggest difference is that Gatsby, it&#8217;s a static site generator, which means it generates HTML files, JavaScript files, and it just runs on your server, so you don&#8217;t need Node.js server, whereas Frontity uses Node.js.&nbsp;</p>\n\n\n\n<p>So it allows you to create a sort of front-end theme that is for WordPress, and that&#8217;s run in Node.js. And it uses the content you create including the content with blocks, and it adds some additional functionality to it like nice page transitions. It adds some dynamic features like for images and there are plugins that can apply some changes to that so it&#8217;s really interesting. And the best thing here is that Frontity as a framework, in their announcement post, they said that they are planning to pivot their efforts to WordPress core.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes, but so Frontity runs in ReactJS too, right? Not only Node.js but ReactJS, okay.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski: </em>Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, no, that&#8217;s awesome. So Matias Ventura, he&#8217;s a member the developer experience team at Automattic and lead architect at the WordPress Gutenberg project. He wrote that, &#8220;I&#8217;m really impressed with the effort and care the Frontity team has put into the work over the past few years. We are at a cusp of exciting new opportunities for Gutenberg and I cannot wait to start collaborating together on making the experience of developing with it a joy to behold.&#8221; So that sounds like a great pivot for Frontity to just be a framework to actually bring everything into Gutenberg, as you said, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. So I see it more like they bring their experience. And they will try to replicate some of great ideas they had in the Frontity framework, and find ways to achieve the same goals inside WordPress core, which would benefit so much bigger audience. I&#8217;m thinking about developers, but also for users on the WordPress. And I&#8217;m also beyond excited about the plan they outlined in the post.</p>\n\n\n\n<p>So they said that, &#8220;Automattic offered to sponsor our team to work directly on the WordPress open-source project, and in particular, to contribute our expertise in developer experience, front-end tooling, performance and user experience to the WordPress core itself.&#8221; So this is exactly what I just said. And actually for me, who is focused around experience with building blocks, it&#8217;s really great how this expertise can bring the project to the next level, and our efforts to making full-site editing so performant and optimized for bringing only the assets you need, bringing what&#8217;s missing the most now is that the block editors is focused on the WP Admin but on the front-end side, we need more interactivity and more better experience of global sites, the first step but Frontity bringing their own experience can fill the gaps in other areas.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. And I have seen that there are also developer relations people with Frontity, so I&#8217;m glad we will definitely be able to learn from them. What I missed early on was talking about the developer relations team. It&#8217;s actually now a band of five with Anne McCarthy and Daisy Olsen being there for almost over a year just wrangling the whole thing by themselves. And then Tara King was joined, and then Ryan Welcher and myself, so we are band of five.&nbsp;</p>\n\n\n\n<p>And I think there are two people coming away from Frontity, but I&#8217;m not quite sure yet. We haven&#8217;t even as a team yet have &#8230; because we&#8217;re all new. So we&#8217;re all in support rotation right now at Automattic and at the WordPress forums. So I think next week is going to be the bigger week where we&#8217;ll co-organize everything a bit better. Yeah, so but there&#8217;s exciting news for the future of Gutenberg and there&#8217;s also some good news for some other site owners, agencies and developers. The WordPress core committers officially extended the support for the Classic Editor plugin all through 2022.&nbsp;</p>\n\n\n\n<p>This gives everyone another year to migrate to blocks. Josepha Haden Chomphosy wrote, &#8220;Still, if you have been putting off using the Block Editor, this is an excellent time to give it another shot. Since it first appeared in 2018, hundreds of WordPress contributors have made a lot of updates based on user feedback. And you will be pleasantly surprised how far it&#8217;s come.&#8221; Of course, most of our listeners know that, about all the huge changes because we haven&#8217;t been shutting up about them. But it&#8217;s definitely an interesting year now for the Gutenberg project and migrating to Gutenberg because all of a sudden, it has a much better picture of the final version or the final vision. Not the version, it will never be done, but yeah, final vision.&nbsp;</p>\n\n\n\n<p>And also, now that quite a few APIs are settled, there is a great creativity amongst developers and we&#8217;re going to talk about it a little later in the show. But on the WordPress Tavern, Justin Tadlock also interviewed core committer, Jonathan Desrosiers. And he had some more details on their approach towards maintaining the plugin beyond 2022. So we will share that link in the show notes like we will all the other links in our Announcement section here, that&#8217;s now quite big. Yes. Anything to comment there, Grzegorz?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, I mean I wouldn&#8217;t be surprised if there were listeners of this podcast that still use the Classic Block plugin. And this is mostly because you might have a site that is no longer developed and it just doesn&#8217;t make too much sense take therefore to migrate that to blocks. So there are always use cases like that. So I&#8217;m really happy that the support is extended. But eventually, I think that it would be good to say that it&#8217;s only a plugin. And if you want to, just keep it installed, and the community should take over the effort, because it&#8217;s a lot of work to keep it up to date. And it&#8217;s not something that we want to have forever.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, and funny, you mentioned that. I have quite a few sites, and it might surprise everybody to hear that, quite a few sites that are actually on Classic Editor. We have taken them over about two years ago or some of them three years ago. And the theme is that Franken theme, like where all the plugin functionalities within the theme. And then there are plugin that we could build and separate out. But the theme, it does the custom post types, and then relies heavily on advanced custom fields.</p>\n\n\n\n<p>Even they have a blocks kind of building thing, there is no migration work done between former advanced custom field sites to migrating to blocks. That&#8217;s one thing. I own this one site where there are thousands and thousands of posts on them that there&#8217;s no bulk, reliable way to migrate those over. One site is so old, or that was designed in 2012. So it&#8217;s not even responsive now, or the responsiveness is kind of really clunky, but the content creator has used a lot of HTML tags within his postings. And it&#8217;s an elaborate layout. Making that into Gutenberg blocks is very, very, very hard. But those are the projects I will be handling sooner or later.</p>\n\n\n\n<p>But yeah, there is a good reason to stay in Classic Editor for another year or two or three. But yeah, you&#8217;re right. Once in a while, it&#8217;s probably needs to be taken over by the community. And there are actually a few plugins already in the repository that go a little bit further than the Classic Editor. One of them is by John Starr, and it says Disable Gutenberg. And it also covers the classic widgets section from that. So yeah, just a little side note, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> One question.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So why don&#8217;t you stop upgrading WordPress, like keep it on 4.9 and just take the security updates? Isn&#8217;t that the best option to feel safe about the future of the site?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, I think sooner or later that most people would actually appreciate Gutenberg as a user interface and getting block patterns rather than a section of, I don&#8217;t know, two pages of ACF Meta Boxes and they don&#8217;t have a clue how it looks, as long as they don&#8217;t hit preview and see how it looks on the front-end. And so, I think the advantages of using Gutenberg for even a big site that has a lot of layouts would be even better. So a migration sooner or later needs to happen.&nbsp;</p>\n\n\n\n<p>Also, not only for that, but also we have new editors come online, all the knowledge is kind of outdated, or they see it on other sites. And that&#8217;s a WordPress skill now, to work with Gutenberg. And now they come to a publication that doesn&#8217;t use them, it&#8217;s anachronistic. It takes the fun out of it, pretty much. It takes the fun out of me when I need to use the Classic Editor because, &#8220;Oh, it would be so much easier to do it in Gutenberg and we can do so many more things.&#8221; So sooner or later, we need to think about migrating these large sites.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. So I guess the reason is that you want to stay with the latest WordPress to get all the updates and make sure that the plugins are still compatible, and they also get updates, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I mean, it makes a lot of sense. I&#8217;m just mostly curious.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, no, I totally get it. Yeah. Especially that-</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I guess we can move on.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; I think we have to otherwise we&#8217;re getting a little long, yeah.</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> We can move on to Community Contribution. So I only wanted to highlight two full-site editing themes that I found out about recently. One of them is called Frost and the other one is Aino, I don&#8217;t know if I pronounced that right. And they are very interesting. And we&#8217;ll leave the links in the show notes as usual. And one of those themes had a very interesting idea because it was like a master theme that had a collection of block patterns.&nbsp;</p>\n\n\n\n<p>So it&#8217;s like you have many different target groups in one theme, but you can select that through pattern, which is pretty interesting idea. It&#8217;s like a sort of block patterns directory inside the theme, which is something new. I like those explorations in the community that happen right now with all the new possibilities. So Aino is also targeting e-commerce websites. So that&#8217;s also quite fine.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So Aino has been built by Ellen Bauer and Manuel Esposito, I think, the theme developer shop out of New Zealand. And Ellen Bauer was already part of our live Q&amp;As talking about full-site editing early on. And Frost WP is the full name of the site, frostwp.com, started by Brian Gardner. And Brian Gardner has been around the WordPress community for ages. He was the original founder of the Genesis framework, which was then sold to WP Engine.&nbsp;</p>\n\n\n\n<p>And he has started now, with the full-site editing in mind, a new theme base called Frost WP. So both themes are not done by new people. They evolve their own coming from the Classic theme going into full-site editing theme and going in full speed. So it&#8217;s really exciting to see them grow and work.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Yeah, pretty inspiring to see those full-site editing themes growing. And I also wanted to report that I did my homework, and I caught up with the new Tell Me About Blocks podcast, which is hosted by Michael Schneider. I guess he&#8217;s from Germany, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I think Australia, but I haven&#8217;t done my homework yet. I haven&#8217;t connected with him yet, which will happen. Michael, if you listen to this, expect a ping from me.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, so if you look for inspiration how to build blocks, or extend their capabilities inside the WordPress Block Editor, then I strongly recommend listening to both published episodes. I enjoyed the one with Rich Tabor a bit more because he has outstanding experience in the field and he profoundly understand the project&#8217;s visions. So I wouldn&#8217;t feel comfortable saying that he&#8217;s a representative of the Gutenberg core team and put him on the spot and talk about Gutenberg. He deeply understands how it all should work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, and I followed Rich Tabor from the beginning of his CoBlocks plugin that came out quite early. He built it with Jeffrey Carandang together. Listened to him at the Boston WordCamp in 2019. And he had some great philosophical ideas on how to build blocks in terms of what needs to be in the toolbar, what goes into the sidebar, and how to approach metadata and options data that need to be built into the Block Editor as well and how to handle those.&nbsp;</p>\n\n\n\n<p>So it was quite an interesting way. So he publishes also on richtabor.com, with blog starts about theme.json, about his experience, and what he thinks how everything should work and how it works.&nbsp;</p>\n\n\n\n<h3><strong>What’s Released &#8211; WordPress 5.8.1 RC</strong></h3>\n\n\n\n<p>Yeah, this brings us to our What&#8217;s Released section, and we have a release candidate for WordPress 5.8.1. And it was released two days ago on September 1st, and it has 41 bug fixes to core and about 20 bug fixes to the Block Editor. Although there are 20 release pull requests as you mentioned before we started recording, Grzegorz, not all of them are part of the bug fix. Some of them are just PRs that need to be added so the other PRs would work.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, so Gutenberg developed so fast that we introduce some technical changes that just are related to, let&#8217;s say, code quality, and then it makes it difficult to backport the actual bug fixes. So that&#8217;s why it took 20 commits, instead of let&#8217;s say, 10 or 15.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So we will share the show notes to the release candidate post on the core Make blog with all the track tickets and PRs that went into it. The release date for it is September 8th, unless, of course, any additional fixes to be made. But that&#8217;s expected to be Wednesday, September 8.&nbsp;</p>\n\n\n\n<h3><strong>Gutenberg 11.4 Release</strong></h3>\n\n\n\n<p>And then we had Gutenberg 11.4 release.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Finally.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Finally?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Finally, the Gutenberg plugin.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, do you want to start out with what the most important things are?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: It&#8217;s one thing that I marked like we said and big font is the change that converts the Gallery block to use Image block. So it&#8217;s a concept of having composed log of several blocks, I mean, two blocks at the moment. So this change is still behind an experimental flag. So you need to go in the WP Admin to the sidebar. And there is Gutenberg, and there is Experiments page, and you need to mark the checkbox and save the settings to enable this new version of the block.&nbsp;</p>\n\n\n\n<p>There are several reasons that were covered with the dev note that we talked about, I guess in the last episode. We will include the link to the dev note. This change is planned for inclusion in WordPress 5.9. So we encourage all the block authors and theme authors to check out this new version, because there will be some incompatibilities. It&#8217;s mostly because the markup has changed, and it might break some CSS styles.&nbsp;</p>\n\n\n\n<p>There are also some plugins that do transforms between Gallery blocks to something else or vice versa. So that needs a lot of testing, it was tested extensively already, because it&#8217;s a huge change, which brings a lot of opportunities. And the best way to check it out is look at the release post for the Gutenberg plugin, which shows that demo, and it&#8217;s really nice.&nbsp;</p>\n\n\n\n<p>It shows how you can move images, you can change every individual image the same way as you modify a single image. So, that&#8217;s a great way. You can use drag and drop now inside the Gallery block. It&#8217;s just an excellent change. And of course, the plugin authors can do any change they wanted. Usually they can allow you to use other blocks inside the Gallery block, it&#8217;s very exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s totally &#8230; I love to see&#8230;. I have experimented with it a bit. And yeah, I like that you can have a different style for each image. So you can have rounded corners for one and circles for a speaker list or something like that. Or each image can have a separate URL now. So when you do a speaker section, that each speaker gets its own link to the profile or the session; just thinking about online conferencing right now, I guess. But it&#8217;s really exciting to see how that works.&nbsp;</p>\n\n\n\n<p>I actually tested this PR a couple of months ago. And I was really amazed how it worked quite well with some of the plugins that you mentioned, Grzegorz like CoBlocks Gallery, or others that had a gallery modification. The three ones that I worked with, were quite compatible with it. I know that Glen Davies, who spearheaded the refactor of the Gallery block also did additional testing with that. He tested them with the Jetpack blocks and Lightbox for the Default Gallery &amp; Image Block.</p>\n\n\n\n<p>So, I mean, he also made a point in testing the three default themes, as well as Astra and Arbutus. So it&#8217;s all in the developer note that he published and which you will find a link in the show notes as Grzegorz said. Yeah, but I&#8217;m really excited about this. I think this is such a great way to put a huge photo gallery together and make it work on a website, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, and just to add more, so now in the Gallery, you can apply image editing, so you can crop the individual image. You can add duotone effects. It&#8217;s so powerful because of this change.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And all you learn with the Image block, you can certainly apply to the Gallery block now. And you don&#8217;t have to use two different ways on image handling. So that&#8217;s definitely an advantage of reducing the cognitive load and expand the horizon a bit. Yeah. So what else is in there? Good. All the next things seem to be like an anticlimax to that.&nbsp;</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>But the Cover block now; you can allow an alt text now for your Cover blocks, which is a great accessibility necessity. The Block Lists is now improved, the iframe block, patterns and template previews. So it&#8217;s easier to see what you&#8217;re getting when you go through the list. What else?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There are a couple of changes to Post Featured Image. So it was pretty basic before but now there is support for duotone. They added the scale property, so which allows you to change how this Post Featured Image is displayed inside the block. And as far as this Post Featured Image can fit to the space it has, it can be somehow like constraint and something like that. So there is some contextual help now added to make it clear what it does, really. And there is now, for other blocks, there is font weight support that was added to several blocks, like Post Date, Post Terms, Site Tagline, and the Button. And yeah, basically, it&#8217;s a constant effort to add those features to more blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, to add more controls to more blocks. Yeah. So I think what I learned with Gutenberg was that well, first, one block gets an extension like the font weight controls, and then once that is finalized, it will be replicated for the other blocks, or other blocks get the support for that, and then it&#8217;s tested, how that would work out.</p>\n\n\n\n<p>So, I really like that to kind of have additional testing in there before it&#8217;s rolled out to all the blocks. Yeah, and that way, the Button block received the spacing support that uses axial padding. So you can have also horizontal and vertical padding for the buttons now within your Buttons block, which is a feature that was requested quite a bit for Gutenberg. And because many, many block suites actually had that built in almost from the beginning, but so now it&#8217;s in core. Yay!</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So this is&#8230;.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, mark, also some changes, because we have those editor feature preferences. And they were reimplemented now on the Widgets page, on the Site Editor page, on the Post Editor page and now they are extracted. And the idea is to have one common interface to use on all screens and share the logic. So that needs to be tested by all the users because there might be some bugs. I would expect that because there is some technical challenges in how to migrate that and store it in the browser. So when whenever you refresh the page, you have still the same settings, they are stored in the local storage.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> When you talk about feature preferences, do you have an example of that?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, sure. So when you open the more menu like the one on the top, on the right side, and then you have fix my toolbar to the top, disable the full screen mode, and things like that, so some of them are present on all screens, some of them are specific to the given screen, but the code that powers that is now in one place.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, okay. So for all the three editors, it&#8217;s all at one place. And if you change it for one, you know where to change things? Is that answer the past or it&#8217;s now getting closer to thinking about taking those preferences out of local storage and put it into user metadata or is that still a ways off?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Oh, this one is actually in progress for two years or something like that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right, right. But I can understand.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So we are aware about this limitation. So the first exploration was to use cookies. And because there is some API already that uses cookies in WordPress. However, cookies have limitations in the browsers. In some of them it&#8217;s four kilobytes and in turns out that it&#8217;s not enough for the settings that we want to store. So yeah, there is a REST API-based approach that is close to land, but it never happened. And definitely….</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; No, I can see why. Yeah, I can see why it didn&#8217;t happen. Because the editors&#8217; screens were not yet finalized. Because many people knew that there will be a Widget screen, there will be a Navigation screen and then there will be a said editor screen. And the other preference were not yet settled completely over all for different editors. So I can see why it didn&#8217;t happen. But it was also not kind of clear to me that that&#8217;s the reason. Yeah because-</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> &#8230; It&#8217;s also complex from the user perspective because now it&#8217;s the question. So now, you said that you don&#8217;t want to have full screen mode. The question is, &#8220;If you don&#8217;t want to have it only on one of the screens or it should be applied to all screens?&#8221; And now we have it in one place, we could consolidate that and give this option that this option should apply to all screens. But that would now like these user-experience questions.&nbsp;</p>\n\n\n\n<p>And there&#8217;s also other questions. So once you pick something; now I am on the mobile that have a small screen. Do I want to have fullscreen there, or it should apply only to the desktop? So there are so many combinations that make it really hard to build a good API.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; Yeah. I imagine. And there&#8217;s also the question, &#8220;Okay, if we do it for our editor team, but when I&#8217;m an administrator, do I want to change that setting again?&#8221; Yeah, that&#8217;s another level there. So I can see why that hasn&#8217;t been finalized. But then if you really want to have your editor screen, I don&#8217;t know what Marias Jensen does, he has this plugin where he stores these kinds of preferences, actually, in the user database, how he manages that. So it&#8217;s interesting to see, yeah once that&#8217;s explored, where it goes. But for this release, all things are now in one interface package. So that&#8217;s a big start in that direction.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, but the changes are applied per screen. So when you change the&#8230; what is it, your toolbar displayed, it will only apply to the given screen for now. But in the future, it has to be decided and we are looking for feedback. So new listeners, if you want to chime in, just open an issue and propose how you would like to see.</p>\n\n\n\n<h3><strong>Bug Fixes</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, I like that. This brings us to the Bug Fix section, and there were quite a few small bug fixes. We are pointing today to the design tools section, which fixes a bug that now allows zero values for those theme.json styles. So the theme.json style generation. So, a quick side note. I had a conversation with a Jason Crist, who is on the theme team at Automattic and he said we need to make a more a &#8230; he didn&#8217;t say we need but I learned that it might be helpful to say, JSON, when you mean the JSON file, and Jason when you mean the person named Jason. It&#8217;s really hard to do this, or you change your name to JSON, like Jason Bahl did, the WPGraphQL plugin developer. Anyway, so what&#8217;s up with zero values in the theme.json styles?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So global styles it&#8217;s like a new specification of CSS written in JSON. And you know that the issue was that it was possible to write the string 0px, like pixel, but when you were providing a number or the string with zero, it would filter it out because JavaScript or PHP would consider it empty. And so, they fixed that and those values are also allowed.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So like I could open that I don&#8217;t want any gradients by adding the gradient but leave the array empty and it would actually disable gradient?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Maybe, I don&#8217;t know about that basically. But for the field or property, it was quite important. To have padding equal zero is quite common if you don&#8217;t want to provide the unit all the time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Mm-hmm. Excellent.&nbsp;</p>\n\n\n\n<h3><strong>Performance</strong></h3>\n\n\n\n<p>And that brings us to the Performance section of the changelog, and there is one that now provides a batch function to the data module to batch actions. I recognize the words, but what does that mean?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s like there&#8217;s a new API in the WordPress data package that allows you to combine several actions, which means changes to the state of the application. So that prevents that on every change, you would have re-render of your UI. So it just waits until other actions get applied and then sends the signal, &#8220;Okay, components, you can check out for changes now.&#8221; So instead of having several renders that most of them would be wasteful, it just waits for the better time for do it. And it&#8217;s pretty common technique that I&#8217;m surprised we didn&#8217;t have it before. And all agreed about that.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. Okay, good. And does it add to performance gains?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, on the PR did. However, when I looked at that post and the metrics chart, at the bottom of it, I didn&#8217;t see any differences. So it&#8217;s really hard to see impact of one PR, because there are other that could downgrade the performance.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Good, excellent, thank you.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> In theory, it should make a difference when applied on a larger scale.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right, now you&#8217;re going to take us into the Experiments?</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I can talk about some of the experiments because I developed two of them, I guess. And so one change that we are looking into is when you have these blocks, like Gallery is now a good example. When you turn on the experiment, you have Gallery block and an Image blocks. Sometimes, you go to the Image block, and you just want to apply something to all blocks like let&#8217;s say, there&#8217;s some alignment option in the Gallery block you want to take the space of the full canvas, or the&#8230; how it&#8217;s called, a full and wide, or like regular. So it&#8217;s like going back and forth between parent and child block, it&#8217;s pretty annoying.&nbsp;</p>\n\n\n\n<p>The idea is that you could do two things. One is dock the toolbar that it always is anchored to the parent block. The toolbar is always displayed in the place when you have the Gallery block. When you enable this option, then the alignment would be also actually shared with the child block. From the child block, you could change the alignment or alter the Gallery block. And yeah, this is something for the toolbar control that is already in place. It&#8217;s still experimental. We are looking also and adding the same functionality to the inspector control, so all the controls that are in the sidebar.&nbsp;</p>\n\n\n\n<p>For now, there were also new refactoring to bring their groups. So that is also interesting from the plugin author&#8217;s perspective because if you have more structured way, then first you will be able to target those groups to insert your controls. At the moment, you can either add it to the general sections like next to all other controls or to the advanced one, which is pretty limiting. And in the future, we think that there will be a lot of groups that have more structured way of handling those controls.&nbsp;</p>\n\n\n\n<p>One exploration is to add dimensions control so I can see a follow-up with the typography or colors. It&#8217;s a better way to have these controls distributed and the user experience also would be better because you could easily remember where to find something. And that also brings another possibilities like very frequent requests from the site owners to disable some of the controls, and we don&#8217;t have controls over third-party changes. So you could at least disable the group now, and that would be a great way. And usually, that&#8217;s what you want instead of doing granularly, just tell that this group shouldn&#8217;t be there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, it&#8217;s really helpful to have the single block also be part of the parent block toolbar to control those properties over all their child blocks, that&#8217;s really great. The next part was the blocks spacing. Now the global styles also have a block spacing gap configuration that you can control through the theme.json file. And it also adds support for the layout to control the gap between blocks. Tested out, global styles are still in the experiments as well. So you need to switch them on. But it&#8217;s getting really interesting now that global styles is prepared for 5.9. It&#8217;s not clear that it will be in 5.9. But we want to definitely test all those things for the user controls, and especially also to switch off user control.</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p>That brings us to the Documentation. There were mostly minor changes to the handbook, but one item got me excited that says, &#8220;Alphabetize the glossary entries.&#8221; Especially from a higher-level point well, there is a glossary. I looked at the PR and it&#8217;s actually the glossary on the core contributor&#8217;s handbook that has been alphabetized. So if you ever want to know what a committer is or what CRUD means or what a dev note is, the glossary, and I will put the link into the show notes, so you don&#8217;t have to dig it out.&nbsp;</p>\n\n\n\n<p>Well, you can look it up there. It&#8217;s quite extensive, and I really like it. Now it&#8217;s alphabetized, so you might as well find stuff. Of course, for the alphabetization to work, you actually need to know what the name of the thing is that you look up. So it might be worth reading through the glossary from A to Z is probably a good way to expand on that. Yeah, anything else in that part that you want to point out?</p>\n\n\n\n<h3><strong>Code Quality</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> No, no, in fact, in the Code Quality section, that is next, there are eight items. But those are also some minor changes that I didn&#8217;t find anything to highlight.</p>\n\n\n\n<h3><strong>Tools</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right, that brings us to the Tools section. And there are quite a few PRs that have the same beginning, and that is, &#8220;Automated Changelog&#8221; and I&#8217;m really happy about that, because we go through the changelog, and if it&#8217;s well organized and structured, Grzegorz and I, we can really work through this quite easily. So you have been working with people there as well or was it somebody &#8230; Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, that was quite a nice team like Dave Smith, Hector Pietro, myself, and Dan Richards. So yeah, we teamed up and everyone contributing in some way. So now the changelog you see in the release post, and also in the show notes we share, it&#8217;s mostly automated. So that&#8217;s very exciting that you can see everything in this form now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Excellent. Yeah. And then there were some changes on the GitHub contributor template, that the form to fill out an issue has been simplified for the bug report with a form template, so you can lead along and don&#8217;t miss any information. So it short-circuits the communication line. Once you report it, developers don&#8217;t have to come back and ask you for additional information. So filling that out is really helpful and speeds up the process. And you don&#8217;t forget anything when you fill out the bug report.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. It&#8217;s a nice change from GitHub, that they provided a way to make this process more like filling a form. So it&#8217;s much simpler from the user perspective because they know what they have to provide rather than skipping the previous version, and everyone just ignore most of the points.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; Yeah, yeah. And it&#8217;s easier, you don&#8217;t have to remove stuff from the issue template to get it all fixed up. Yeah. No, really good work.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, there&#8217;s one more change that I personally find very interesting. So whenever you have a block is parsed, then if the contents saved in the database no longer matches how the block should be represented in the post, there are some deprecation logs in the browser&#8217;s console. Most of the users they don&#8217;t see, but it&#8217;s important for developers.</p>\n\n\n\n<p>However, it was after we introduced block patterns that they don&#8217;t get updated after they&#8217;re created, usually. So those logs started to pollute those browser consoles. So now, they are grouped together. Especially, it&#8217;s important when everything went well, so you don&#8217;t really have to report that however we do that for the information of the developers, maybe they want to update that. That&#8217;s a good reminder, but….</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. I can see that the block patterns of course, changed all the time, even in the content and going back to the block patterns, not the same original. But I think that whole process is also a major pain point for developers to get into block development using JavaScript. The deprecation process per se, I don&#8217;t know if it&#8217;s unstable or it&#8217;s just very verbose and laborious. I know quite a few developers have decided to just use PHP for the rendering, and not go through JavaScript for the render, and create dynamic blocks, quasi-dynamic-static blocks, so to speak. And looking is going to be helpful, yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> In this context, when you are using Cover blocks, and they get new features, and because of that, it requires new HTML markup to represent that, because you have those deprecations encoded, whenever someone inserts the button that was created two years ago, when you insert that into your post, you would get the most up to date version of that block, which is what we want to achieve and that&#8217;s why it&#8217;s so important. Of course, when you are working on a site that you have different needs, then dynamic blocks is probably something that you want to have, however, in the context of using patterns, that has some downside when it&#8217;s dynamic because you just need to have something that you&#8230;.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. Totally. Yeah, definitely. So there&#8217;s also one, well, pain point with that to just kind of surface it a bit more is when you have a changed block, the deprecations does not kind of go back to the block that was used two months ago and had a different HTML, it just does not recognize as a mistake, but it does not update the block, or the render or the content that was built with the block.&nbsp;</p>\n\n\n\n<p>And I think that&#8217;s was also something that it&#8217;s hard for a developer to&#8230; or it was hard for me to figure out, &#8220;Okay, I built this block. And now I make an update and a new version of it. But all the previous usages of the blocks are not getting updated.&#8221; And that&#8217;s how you do when you have server-side rendering, it always uses the latest codebase for that. So, that was an interesting problem that surfaced with the JavaScript blocks.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I know we deal with those issues all the time when we update the markup. It&#8217;s just the most painful&#8230; Also, for a core developer, believe me, it&#8217;s not simple, but the benefits which I covered are more important in this context.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right. Okay, so what&#8217;s next on our changelog? That&#8217;s it?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s kind of related.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, no. Yeah.&nbsp;</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. So in this section, What&#8217;s in Active Development or Discussed, we have a very interesting debate on the internet. It&#8217;s still related to building blocks, but from the different angle than we covered in previous episodes. So it all started with the tweet from Mark Jaquith. And so, he poses the idea, as he explained, &#8220;What if building custom blocks for the Block Editor was as easy as supplying attributes and a block of HTML? What if this produced React-editing code and PHP-rendering code without a build step?&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s just magic.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Magic. There was also a code snippet shared which was like a PHP class that had those attributes and a function that renders the aforementioned HTML. It&#8217;s a pretty nice idea. That&#8217;s funny because Riad was almost at the same time working on a prototype of something similar. And he shared his explorations on GitHub in the new repository he created there.</p>\n\n\n\n<p>And the idea is almost the same. But instead of it using PHP, Riad asked, &#8220;Well, what if you use something that&#8217;s platform agnostic in a way that it doesn&#8217;t bound to a certain programming language, but something that we could use in PHP in JavaScript, but also in React Native or in any other languages you want?&#8221; So I really like how this discussion has developed. I also talked to Riad about his idea.&nbsp;</p>\n\n\n\n<p>He walked me through, and it&#8217;s really interesting what he does is he just implements what Mark said. So he uses a JSON file. And in this JSON file, he also represents HTML, something sort of like HTML code, that then gets converted with the tool that he created into PHP, JavaScript and CSS that&#8217;s just represent your block. Yeah, a bit mind-blowing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, he calls it Blocky, and we&#8217;ll share certainly the link in the show notes that&#8217;s on GitHub, for youknowriad&#8217;s user base kind of forward slash blocky. It&#8217;s not an automatic thing or something or a WordPress thing. But yeah. And then there was another discussion. I think there was this discussion was between Mark and Helen Hou-Sandi as well. Yeah. And what does she tried to do? She blogged about it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, the idea was just to start discussion and set a good tone. I think that she shared also an example using Mustache-style tokens, which is something well known. It&#8217;s used in other projects like WP-CLI but also in Gutenberg in create-block tool. Yeah, but she does make the clear that it&#8217;s not about this particular templating system or the way it should be done. It&#8217;s more general. It&#8217;s like an example to better visualize the ideas.&nbsp;</p>\n\n\n\n<p>But yes, I like the discussion, where it&#8217;s going, and the ideas that pop up. And there was also a comment from Lars Gersmann. And he said, &#8220;What if you would use pure ES6 template strings for rendering the components?&#8221; So it&#8217;s like just another way of represent. And this one is pretty interesting because people don&#8217;t like JSX when building blocks, which is a sort of another templating system to represent a code.&nbsp;</p>\n\n\n\n<p>But in this context, there is something built by Jason Miller from Google. And it&#8217;s called HTM, and which basically, is something that some people use instead of JSX, which doesn&#8217;t require build step. So having this representation, of course, in PHP it doesn&#8217;t look so promising in that context. However, if you would have this templating system and a way to integrate that with PHP, you could do really interesting things. Like in JavaScript, you wouldn&#8217;t need a build step, you would just write this string as something that resembles HTML and it magically would convert to React components.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. I&#8217;m glad that now those conversations happen. But I think it also needed to have much advanced &#8230; you couldn&#8217;t have that conversation three years ago because you wouldn&#8217;t have the APIs in place to even do a proof of concept or kind of push it a little bit further. And so, it&#8217;s clear that that needs to have mature APIs and additional experience to push this a little bit further and make it more open for different variations to build blocks.&nbsp;</p>\n\n\n\n<p>Pascal Bichler also chimed in. And he had this additional approach to saying, &#8220;Okay, using React components in the editor, but use web components that use the same API to render the front-end.&#8221; So it sounds like duplication, but on the other hand, web components are maintained by a large standard body and are not dependent on the implementation of the framework, like the React framework, or you can use web component with other frameworks as well. So if you would change the &#8230; God forbid, the editor to a different component system, you still could use the same front-end. That&#8217;s kind of interesting way to &#8230; that&#8217;s a larger look at things, way larger than I&#8217;m capable of, but yeah, it&#8217;s just another way to organize things there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, it aligns with what Mark proposed, to have one our presentation don&#8217;t get like, it behaves differently in the editor, differently on the front-end. But maybe it could be different if you are in a native app, on your phone, it would could have a different representation. It&#8217;s very interesting times to be in and engaged in those type of conversations.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, for some who do day-to-day development, it seems to be more an academic discussion. But I think it would be really helpful to read Helen Hou-Sandi&#8217;s blog post, and of course, we&#8217;re going to share it. And she made a big point of saying this discussion is not between two WordPress core committers, like Mark Jaquith is and she is. She has been a lead developer for quite a while on the open-source project. This is just a discussion on programmers who do agency work to organize how they do custom blocks within the team.&nbsp;</p>\n\n\n\n<p>And that certainly, should be interested to some of the agencies that also work with us and have been on the fence of using Gutenberg or have tried to solve some of the problems and to get additional input from those that Helen Hou-Sandi works for 10up and Mark Jaquith is, I think, a freelance developer. So from their point of view, it&#8217;s definitely worth a read.&nbsp;</p>\n\n\n\n<p>All right. If I look through our notes here, I have just one thing that I wanted to point out that is Matias Ventura, who is called the spark of Gutenberg in one of the publications, posted a short blog post, but it&#8217;s giving the theme.json file its horizon, pretty much. And he covers there when themes are going full-site editing, or using the theme.json file for controlling all the different places of the theme, it has some consequences on interactivity because you now can build an interface on top of it.&nbsp;</p>\n\n\n\n<p>On consolidation, you can remove the overhead of repetitive declarations about block features, and then compatibility, that language of blocks is by default compatible with third-party blocks, which I find is a quite compelling argument to switch over to theme.json because the plugins then also can connect with the theme and be more&#8230;. We talked about it, Grzegorz before here, that if you have an additional custom post type or a different content that you want to put on the front-end, you can tap into the theme.json to style i, or keep it in style with the local theme without having to do a lot of your own CSS put to it.&nbsp;</p>\n\n\n\n<p>It definitely has a performance gain on rendering those block themes and starting to roll out them. And it has a flexibility component to it, a visual parity. Talking about patterns, he talks about portability, accessibility, and also the admin section. So it&#8217;s quite an interesting post to look at from a bird&#8217;s eye view on the theme.json and what it will mean for WordPress and WordPress development. So that&#8217;s my before you go, end of the show thing. Do you have anything that you want to point out, Grzegorz?&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: No, I just wanted to emphasize the portability that we also discussed in the context of blocks, it&#8217;s just the same. How much this would change the landscape that you could have this meta language that allows you to write blocks that can be run in so many different places, not only inside the WordPress web app, but also on mobile devices, and in so many other places like in Drupal or whatever the future will bring.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, so I was wrong. I have two more things that are I wanted to just point out before we end the show. First&#8230; Oh, it&#8217;s actually three, no five&#8230; I never stop. Okay, so let&#8217;s wiggle that down. It&#8217;s Anne McCarthy has published the summary of the testing call for the header and the navigation block. It&#8217;s very interesting, the summary will be shared, but it also points out some of the pain points that still need to be resolved with navigation block and the screen.&nbsp;</p>\n\n\n\n<p>Then speaking of theme.json and portability, she is preparing with a team, also the next call for testing, which is not so much a testing of features, but a testing of a broader picture. And that is how themes switching will work or was supposed to work or what&#8217;s expectations about it? Because that&#8217;s certainly something would be relevant when we go into 5.9, or when it&#8217;s released, could be 6.0. But how does theme switching change now with theme.json and full-site editing? Meaning which of the templates that I as a user build, I want to keep when I switch the theme? Or is there a header that I want to keep when I switch the same kind of thing?</p>\n\n\n\n<p>So how that&#8217;s supposed to work and that will be really great if you&#8217;ll have a lookout, we probably will talk about it at the next show. And then this third one, what I wanted to do is&#8230; And I totally forgot about it. So this is the end of the show. Yeah, no, it doesn&#8217;t come to me.&nbsp;</p>\n\n\n\n<p>So thank you so much, Grzegorz. It was a great show again, and we got some very interesting technical insights in how to approach some of the harder work at developing Gutenberg. So I think that was really helpful for me, especially, I learned a lot today. And then as always&#8230; Sorry, go ahead.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s always good to discuss those difficult topics, but it&#8217;s very inspiring, also to see how the community explores all those ideas, so I&#8217;m glad to follow all those discussions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So as always, the show notes, and they will be quite long, will be published on the <a href=\"https://gutenbergtimes.com/podcast/\">gutenbergtimes.com/podcast</a>. This is episode 51 and if you have questions and suggestions on any of it, please send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s changelog@gutenbergtimes.com. Well, thank you so much, Greg. It was good talking to you. And thank you to our listeners for being with us. If you like the show, please share a review on iTunes or on Stitcher or Google, so more people will get to be learning more about Gutenberg.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, thank you everyone for listening. And see you in two weeks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> See you in two weeks. Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Oct 2021 19:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Gutenberg Times: Changelog #50 – Preliminary Roadmap to WordPress 5.9, Gutenberg 11.3 release and Navigation Screen and Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=18774\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://gutenbergtimes.com/podcast/changelog-50-preliminary-roadmap-to-wordpress-5-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50907:\"<p>Birgit Pauli-Haack and Grzegorz Ziolkowski discuss the preliminary roadmap to WordPress 5.9, Gutenberg 11.3 and Navigation Screen and Block</p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-49-drag-and-drop-flex-layout#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/changelog-50-preliminary-roadmap-to-wordpress-5-9/#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-18774\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">Preliminary Road to 5.9</a> by Matias Ventura</p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=AMPKmh98XLY\">Designing Intrinsic Layouts</a> by Jen Simmons—An Event Apart video</p>\n\n\n\n<p><a href=\"https://tellmeaboutblocks.com/\">New Podcast: Tell me about Blocks</a> with Michael Schneider</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2021/08/17/proposal-brand-guidelines-for-learn-wordpress-content/\">Proposal: Brand guidelines for Learn WordPress content</a> Hugh Lashbrooke &amp; Courtney Robinson</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/08/11/fse-program-testing-call-9-handling-highered-headers/\">FSE Program Testing Call #9: Handling HigherEd Headers</a> by Anne McCarthy</p>\n\n\n\n<h2>Gutenberg 11.3</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/08/18/whats-new-in-gutenberg-11-3-18-august/\">What’s new in Gutenberg 11.3? (18 August)</a> </li><li><a href=\"https://wptavern.com/gutenberg-11-3-introduces-dimensions-panel-adds-button-padding-support-and-speeds-up-the-inserter\">Gutenberg 11.3 Introduces Dimensions Panel, Adds Button Padding Support, and Speeds Up the Inserter</a></li></ul>\n\n\n\n<p><a href=\"https://riad.blog/2021/08/16/the-cost-of-wordpress-plugins-on-the-performance-of-the-editor/\">The cost of WordPress plugins on the performance of the editor</a> by Riad Benguella</p>\n\n\n\n<p><a href=\"https://mobile.blog/2021/08/11/building-an-editor-by-sharing-code-between-android-ios-and-web-with-react-native/\">Building an Editor by Sharing Code Between Android, iOS, and Web with React Native</a> by Matt Chowning</p>\n\n\n\n<p><a href=\"https://wptavern.com/a-discussion-with-gutenberg-project-lead-matias-ventura-on-the-barrier-to-entry\">A Discussion With Gutenberg Project Lead Matías Ventura on the Barrier to Entry</a> by Justin Tadlock </p>\n\n\n\n<div class=\"wp-container-616f50bd25e40 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Did you like this episode? Please write us a reviewhttps://lovethepodcast.com/gutenbergchangelog</p>\n\n\n\n<p> </p>\n\n\n\n<p><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></p>\n\n\n\n<p><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></p>\n</div></div>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello, and welcome to our 50th episode of the Gutenberg Changelog podcast. Today, we will talk about the preliminary roadmap for WordPress 5.9, the Gutenberg 11.3 release, and the navigation screen and block, and so many more things.</p>\n\n\n\n<p>I&#8217;m Birgit Pauli-Haack, curator at the Gutenberg Times, and I&#8217;m here with my co-host, Grzegorz Ziolkowski, code wrangler at Automatic and WordPress co-contributor. Good morning, Grzegorz. How are you? Thank you for agreeing to record this early and accommodate my in-laws&#8217; schedule. It&#8217;s fabulous weather for a bicycle tour tomorrow. So we&#8217;re doing it today. How are you?&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Hello, Birgit. I&#8217;m great. It&#8217;s Wednesday, and we are before the official release of the Gutenberg plugin, but it looks like everything is ready. We are recording anyway. So the weather here is similar. It&#8217;s maybe not for bicycles for me, but there&#8217;s a lot of activities outside. I hope to play basketball in the evening with my friends. So that&#8217;s great, as always.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. Physical exhaustion in the heat. Yes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> In fact, the weather is great, because it&#8217;s hot during the day, but the mornings and evenings, they are quite chilly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, that&#8217;s awesome. Yeah. Good.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>So first, we have some, I mentioned it, Matias Ventura published a preliminary roadmap for WordPress 5.9. Now, that 5.8 is out with some of the full-site editing in there, some block designs, block patterns, he has some thoughts on what needs to happen for the next release.&nbsp;</p>\n\n\n\n<p>His post divides up the work in six sections. We&#8217;re just going touch briefly on it, but do chime in Grzegorz anytime. So the first thing he mentioned is blocks and intrinsic web design, that he feels that the responsive tool, and of course not only he feels that, every theme developer feels that, that the responsive tools are still missing for blocks. And that needs to be addressed in regards to intrinsic web design, which is an evolution from the responsive designs and is about page layouts.</p>\n\n\n\n<p>And he considers, three context matters is really the point here, that if a block isn&#8217;t displayed on screen, or on the phone, it still needs styling to consider the context. So it would be displayed as an inner block in a column display. It definitely also needs a different styling than when it&#8217;s in a single row by itself. That needs to be addressed.&nbsp;</p>\n\n\n\n<p>I looked up the expression intrinsic web design, because I wasn&#8217;t all that familiar with it. It was quite….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I don&#8217;t know that one as well. So I&#8217;m curious to hear more about that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And it was coined by Jen Simmons, she brought the grid layout to us as a responsive design plus, and it&#8217;s fixing some of the shortcomings and hacks of the responsive designs. Without going any deeper, and here a couple of years ago, she did a great talk at the Event Apart, and we will have the video link in our show notes about that, where she breaks down how we address a flow layout or flex layout, grid layout, and then so forth.&nbsp;</p>\n\n\n\n<p>But that&#8217;s definitely something that needs to get into the Gutenberg blocks, now that we are approaching page layouts with the site editor, there needs to be done some more work, as Matias says.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> In terms of technical aspect, is it less about using media queries to style your website and more about to make the design change according to the space it has? It&#8217;s more based on what&#8217;s the neighbors of your block, if it is something that is in the column, then classical media queries wouldn&#8217;t work because it&#8217;s still too narrow?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Exactly.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> That makes a lot of sense.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And the viewpoints, of hard coded viewpoints that you see in a lot of designs, they not always apply, because the tablets get bigger, the phones get bigger, the phones get smaller, and then you watch it on a big screen, which is beyond the normal computer screen. The context changes so much on that.</p>\n\n\n\n<p>I know that there are brilliant people in the Gutenberg team that can address it, but you needed to have the whole thing. I hear the rumblings that a developer needs to override the block, or a theme developer needs to override the block styling to get it into his own theme displayed nicely and all that. That is all part of that.</p>\n\n\n\n<p>Because the whole context of a page layout wasn&#8217;t yet clear how the column block or how a cover block with multiple inner blocks would be handling that. That&#8217;s certainly a problem to have and to be solved. I think that&#8217;s what I learned from Matias&#8217;s post, it&#8217;s very, very high on the priority there.</p>\n\n\n\n<p>It also comes in with the panel directory now, that it&#8217;s available now, it needs to have a better integration with the inserter. And also get some multi-block transformer improvement, that you can transform maybe a cover block into a block pattern or a paragraph block or a quote block into a block pattern. And that flow also needs to be integrated into template parts and page layouts to add block patterns into those.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I guess the most important part is that some of the block patterns that are in the directory aren&#8217;t so easy to use, because you need to copy them. I hope to see some improvements on that side. I guess that&#8217;s doable. It&#8217;s not that far away from that place.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And the meta team and the Gutenberg team worked on that already with the block directory, where you can search for a block in the inserter and then grab it and get it into your content. I think some basic architecture was already done there.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> But it was only for a subset of blocks that were marked as core specific. So that&#8217;s a different story to make it work for everything that is sent to the directory.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, the directory itself, the pattern directory right now only allows for core, for patterns that are built with the core blocks. It&#8217;s a similar process, there is no danger that the block that&#8217;s in the pattern wouldn&#8217;t be on the site. Well, unless it&#8217;s switched off. Yeah, there&#8217;s a block manager that it switch off&#8230; That&#8217;s definitely some issues that will need to be solved one way or other, or it will bubble up as a bug later on.&nbsp;</p>\n\n\n\n<p>The third section that the Gutenberg, it is the navigation menus that will be the main focus for 5.9. It&#8217;s the new navigation screen as well as within navigation blocks. And there are definitely still some experience and display improvements necessary and reduced complexity was an expression that Matias uses in his post. And also that definitely needs to be tested, tested, tested, with as many themes as possible.&nbsp;</p>\n\n\n\n<p>Speaking of which, and you will hear me talk about it today multiple times, is that there is already a testing call. Anne McCarthy already posted the ninth call for testing for the full-site editing outreach program, and that is actually covering headers and navigation. We start with that already.</p>\n\n\n\n<p>The fifth one, section four, Ventura&#8217;s roadmap or WordPress roadmap then is creating an interface for the theme JSON file. Right now, writing theme JSON manually in code is tedious. And the next step is to actually finalize the UI and the whole system is, we talked about it before, we covered it under global styles, where the user gets the chance to set those theme settings and configuration with the interface in a sidebar, in the site editor, that is also coming to 5.9. And the team has been working on that for quite a bit.&nbsp;</p>\n\n\n\n<p>The fifth one is header design tools, colors, typography, spacing and layout. And one of the main goals would be a consistent access to the similar tools across blocks, and including third-party ones. And that the parameters and the settings are normalized between block JSON files and theme JSON file, when there&#8217;s block support or theme support, that they use the same taxonomy there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> We had a lot of experimental features enabled in 5.8. I hope all of that is going to be stabilized, and we will have a consistent API. We are on a good path towards this goal. I&#8217;m positive about this one.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And there&#8217;s a lot of testing also done, actually, I think Anne McCarthy also published a survey, we will highlight in the show notes, the results of it, where they connected with some theme developers on how they are using the theme JSON and what they liked and what they don&#8217;t like. So that is also great input for that phase of preparing for 5.9.&nbsp;</p>\n\n\n\n<p>The sixth section in Ventura&#8217;s roadmap 5.9 post was to formalize the editing flows for block themes and having a clearer information architecture for all the features, like editing templates, styling pages, creating whole template parts and all that. There was some great input from the full-site editing outreach program. So that will be iterated a lot, and also finalize the theme level blocks that have been experimental or have not been published for the&#8230; They&#8217;re in the plugin, Gutenberg plugin, but they&#8217;re not in WordPress core yet.&nbsp;</p>\n\n\n\n<p>So that concludes the preliminary. That&#8217;s a very big word there, roadmap for WordPress 5.9. The schedule is not out yet.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I guess the original plan was to have the release in December this year, but I don&#8217;t know, there isn&#8217;t a very detailed plan about that. So still probably involves and we will learn about that soon.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m thinking the core meeting later today would bring another preliminary schedule there.</p>\n\n\n\n<p>Yeah, so if it stays with the schedule for December, then there will be future release in October, eight weeks before the release. That&#8217;s only two months away. So that&#8217;s a big roadmap for that. I&#8217;m sure there will be a cutoff date where we say, &#8220;Okay, this comes in or it doesn&#8217;t come in, or it&#8217;s ready or it&#8217;s not ready,&#8221; like we had it for 5.8.&nbsp;</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p>We have a few community contributions today, we want to talk about. First, there is a new podcast. It&#8217;s called Tell Me About Blocks. And it&#8217;s an interview podcast about building extensions for Gutenberg, the WordPress block editor. And you can learn from guest experiences, creating block plugins, themes and block patterns. Michael Schneider is hosting that. It&#8217;s a monthly podcast.&nbsp;</p>\n\n\n\n<p>So July was the first episode and was with Keanan Koppenhaver. He&#8217;s a WordPress contributor and agency owner and plugin developer. He talks about his experience to do the Block-a-saurus plugin, which he just played around with the block editor to make it a little bit more fun. He&#8217;s also the maintainer of the Kanban for WordPress plugin that&#8217;s in the plugin repository.&nbsp;</p>\n\n\n\n<p>In the second episode, Michael Schneider interviews Rich Tabor, and talks with him about the making of the latest plugins, Markdown Comments, and the to-do list plugin for the block editor, which are more collaborative plugins for the admin section of the editor, rather than for front end. I haven&#8217;t listened to the second one yet. Have you heard about it Grzegorz?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I only learned about this podcast yesterday. I subscribed. So I&#8217;m planning to listen to both episodes, because this is the area I&#8217;m the most interested about, in the development of the block editor and WordPress in general. I&#8217;m looking forward to it.</p>\n\n\n\n<p>We talked about the contributions from Rich, in particular about the markdown comments block, and the path, the journey that he had to send all his work to the block directory. So I&#8217;m just keen to learn more about the process and the experience in the form of the podcast that we all love, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, and so we wish good luck to our fellow partner, Michael Schneider, in Tell Me About Blocks. And you can read up about it, tellmeaboutblocks.com. It&#8217;s all one word, no dashes, no underscores, anything, tellmeaboutblocks.com. So you can subscribe to yourself, because you are listening to our podcast, so you are interested in podcasts.</p>\n\n\n\n<p>There&#8217;s a second announcement in the community contribution, which is from a team, of the WordPress team from the learn.wordpress.org team. And Hugh Lashbroke and Courtney Robertson have a proposal for brand guidelines for the Learn WordPress content. They asked plugin and theme creators if they want to contribute a course to the site. And the proposal handles the brand guidelines.&nbsp;</p>\n\n\n\n<p>So if there is, how they will handle shoutouts to other products that are outside of wordpress.org, but in the space. I think that should have your attention, and read through it and see what you think about it. Because definitely, the training team could use some help from more practitioners. It should be worthwhile for the brands as well.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> And we need more tutorials how to build for the block editor, how to use the block editor. It&#8217;s all there, but it&#8217;s rapidly changing. We need to record new content. It&#8217;s only in your hands, and we are waiting for that.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. You make some great impact if you contribute that way to the WordPress project, and it&#8217;s what you already know. So you don&#8217;t have to learn a whole new thing. But you can influence millions of WordPress developers who wait for your wisdom.&nbsp;</p>\n\n\n\n<h3><strong>What’s Released &#8211; Gutenberg 11.3</strong></h3>\n\n\n\n<p>So that brings us to Gutenberg 11.3 release.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski: </em>It&#8217;s still not out at the time of the recording. But we hope that it happens in any hour today. And anyway, we can cover what&#8217;s already in their release. This time, there isn&#8217;t anything in the changelog that would be marked as a new feature, although some of the enhancements listed are in the space of something that could be considered as a new feature.</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>There is now a new color picker, an experimental component. We talked before about this project, that has this code, G2, like next generation of components. And the work is towards building a better UI for all those controls that you use with blocks, with global styles and such. And it&#8217;s still experimental. But the plan is to have different color pickers.&nbsp;</p>\n\n\n\n<p>So you can check out this work to see the difference that is there and if you like it or not, give some feedback. It&#8217;s still in the works, in development. So you have impact on that and can drive the future work on that one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The G2 initiative is to make components much more accessible out of the box, so to speak, that a developer who uses those components, not only the Gutenberg developers, but also plugin developers and external developers can use those components and have an accessible experience, a more accessible experience out of the box. At least that was the new initial focus from Q and Sarah.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> And in general, there&#8217;s more to it. This concept of intrinsic web design, this is all about making this new set of components that they follow those principles. They adjust according to the context.&nbsp;</p>\n\n\n\n<p>And the other part is the team that is behind that. They are trying to unify the public API. At the moment, we must admit that some of the components were created a long time ago, and they were more like a realization of the current needs than the vision for the future. But this project helps us to bridge that gap, and make it much easier to use for all developers.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, thank you. So one of the enhancements is also the post featured image block received basic dimension controls for the image, which was something that was requested quite a bit. And that is when you use the query loop block or the post template, where you display the series of blocks and the featured image with it. You can also use it in the single post template, if you have a block-based theme.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, so just to remove some confusion that we discussed before the recording, is that this feature doesn&#8217;t quite work with classic themes. So it doesn&#8217;t have any impact on post featured images, unless you start using block-based themes, and all those designs.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I think we need to, some of the enhancements that you said, we need to point out that this is not for classic themes.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> And there&#8217;s also a small change, a visual change, there are new icons for usable blocks and template part blocks. This is a special type of box that store the content in the database, and in the past, we had this logo looking like a Lego block. And now it looks like a stacked diamond. And the difference is only that one of them has the filled in background color, or something like this.&nbsp;</p>\n\n\n\n<p>So a subtle difference, it shows that those two blocks are similar, but a bit different, the usage is different. It&#8217;s more for design and usable block is more for sharing the same content.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And the stacked diamonds represent that it&#8217;s more a block collection than just one block. So the reusable block are the ones with just the outline of the stack diamonds, and the template parts display is the filled in stack diamonds. And you can distinguish them in the list view of the site editor or your post editor to identify them better.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think that was the main motivation, because the list view is now persistent. When you have it opened, those visual cues are really important.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The next item is for the block editor. Now, for the internal links, there&#8217;s also the rich previews enabled. So when you link to a post that&#8217;s on your own site, once you did the linking, and you come back to that post and hover over it, it gives you a nice little window with the title, the featured image and an excerpt. And it also gives you a little link where you can unlink that post again.</p>\n\n\n\n<p>This is similar to a Google Doc linking mechanism. It really speeds up the quality control of your content when you go back and double-check on some of the links, is it really the right post and all that. And it takes care of, it uses the meta description and the Open Graph meta tags for that rich preview. So if your site doesn&#8217;t use those, you won&#8217;t get the rich previews, and it wouldn&#8217;t show. But most WordPress sites use them out of the box anyway.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think it&#8217;s a game changer for content creators. I use this command plus trackpad click feature to check if the link that I used is correct one. You no longer have to do it, you just hover over the link and you have the hint for visible at your….</p>\n\n\n\n<p>The other thing is that the button block, it has now padding block support. This one is quite different in how it has changed, because it&#8217;s not only a new feature that was added to the sidebar, but I think this is also the one that introduces a bit different UI experience. Is it this one or did I miss that?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, it&#8217;s the next one. But this one is the padding. Now, padding has been around for quite a bit, padding and margin for cover block. And now it also comes to the button block. So it&#8217;s the sub block of the buttons block, where you can set the padding for all buttons or for the whole dimensions of the button, like the padding 20 and it adds them to the top, to the right, to the left and to the bottom.&nbsp;</p>\n\n\n\n<p>Or you can unlink those sections, and then individually change the top left, right and bottom padding, as well as the padding for the button. You were talking about the next piece, there was the dimensions panel.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Dimension panel.</p>\n\n\n\n<p>It&#8217;s interrelated, because the new dimensions panel, it&#8217;s using two features, it&#8217;s controlling two features, which one of them is the padding and the other one is margin. The idea is that, with so many new controls showing up, for some blocks, it&#8217;s too much to process when you look at the sidebar. So there is this exploration that is already in the Gutenberg plugin, that allows you to use the drop down menu to pick what&#8217;s displayed inside the panel.&nbsp;</p>\n\n\n\n<p>So you can decide whether you want to display both the paddings and the margin or only one of them. And there is also this reset all feature, that just goes to the default state. So according to the discussions that are in this PR, you can find out that this type of interaction is considered for all other panels like typographic and color.&nbsp;</p>\n\n\n\n<p>I&#8217;m looking forward to how it changes, because it&#8217;s something that site owners requested for so long, to have better control over those features. Once we have that, apply to all features, it will be much easier to give also some coding APIs that will allow to control that from the code, so you could easily turn off all the features you don&#8217;t want to have on the side.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And it&#8217;s also part of what Matias mentioned before in his roadmap post, that the consistency of having the controls all look alike. So once a user learns them, he can apply his knowledge to all kind of different places where that control can be used. And also how to handle a margin that is now different from a cover block to the theme parts sidebar. So that&#8217;s part of this normalizing and being more consistent in all the tools.&nbsp;</p>\n\n\n\n<p>So those are the enhancements.</p>\n\n\n\n<h3><strong>Bug Fixes</strong></h3>\n\n\n\n<p>Then we have a few bug fixes. There are quite a few bug fixes in this release. I just wanted to highlight one of them, that is that the custom gradient picker for left to right languages is now fixed. So now gradients work well, better again, from left to right languages. I&#8217;m a fan of gradients and everybody should have access to it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s definitely a very nice feature. And there&#8217;s other bugs I want to mention in the template editor. And now, we show only post template actions for user with correct capabilities. So sometimes those features are very powerful. So you want to have better control who can access them. It&#8217;s something that is constantly looked at and improved. There&#8217;s so many new features added, it&#8217;s very easy to miss that part, that there should be permissions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, this alleviates some of the anxiety that theme developers have, that any user can mess up their beautiful theme with changing some of the templates. But it&#8217;s now only restricted to the admin. That angst can be alleviated.</p>\n\n\n\n<h3><strong>Performance</strong></h3>\n\n\n\n<p>There were also quite a few performance improvements that come with this Gutenberg release 11.3, and one of them is the lazy render block types in the inserter. It only shows block types that are necessary now. Have we talked about it before? I think that is an additional iteration of that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It might be something different. As far as I remember, this one is the same solution that was used for block patterns. So block pattern does the previews and so on. It&#8217;s a lot of data to process. There is a special handler that just splits the list of all block patterns into chunks, and this solution was implemented also to the block inserter and improved the performance, like perceived performance of the inserter immensely.&nbsp;</p>\n\n\n\n<p>So the difference you can see is that you will see small parts of the block types in the inserter at first, and the rest will just be iteratively added as the browser has free cycles to process that. So that makes the experience &#8230; because you can already start processing the block items in the inserter as they are rendered. In the past, you would have to wait until everything is ready. That&#8217;s a big improvement.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So what I see in that PR is that Riad created a little page or website that measures the block editor performance and it&#8217;s titled, Is Gutenberg Fast Yet? I think we talked about it before.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And where he sees the different items, how much time they use. And so he does some incremental improvements there and highlights all the different things that are keeping Gutenberg from being fast. It&#8217;s quite interesting for those who are interested in that kind of analysis, look at the PR in the site, and maybe you can help him figure out some of the performance hogs to make it even faster.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, also, speaking of Riad and all his efforts to improve the performance of the editor, he also posted on his blog, about the cost of WordPress lag is on the performance of the editor. So it&#8217;s a really good read, especially if you are one of the authors of blogs, and he just shows the results of measuring the impact of the most popular plugins.</p>\n\n\n\n<p>Also, he covers the plugins that add the functionality to the blocks, like additional features and how it impacts the performance. He covers also some recipes, how you can measure it on your own, when you are developing. The state of major plugins is really good, it has improved. As he was preparing this post, he reached out to some of those plugins, and they improved the performance, based on his findings. So it shows how the community is really into these performance improvements. That&#8217;s really great to see how it evolves.&nbsp;</p>\n\n\n\n<p>I recommend checking out this post. He shares his approach how to process all that. There is also, it&#8217;s a follow-up post, because in the past, he had another post when he explained all the impacts of different approaches that you take when building blocks, using data stores, using rendering, and it&#8217;s very complex.&nbsp;</p>\n\n\n\n<p>If you are really into block development, those two posts is definitely a must-have, if you want to provide the great experience for users, because performance is one of the most important aspects of that.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>I&#8217;m just scrolling through that, thank you very much for pointing out this post. I haven&#8217;t seen that yet. So definitely, we will share the link in the show notes. And it&#8217;s definitely an eye-opener in how plugins change performance. And he has some nice spreadsheets there, where you can look things up, and also how you can, as you said, how you can measure your own as well, if you develop a plugin for that.&nbsp;</p>\n\n\n\n<p>Yeah, thank you. It&#8217;s also improved performance through the parser of removing the automatic custom classnames handling. What does that mean? I&#8217;m not so quite sure I understand it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s quite complex. But the difference here is that this was the responsibility of the block editor before, and Riad moved this logic to the block parser. It&#8217;s happening earlier in the process. And because of that, it allows to skip some of the….</p>\n\n\n\n<p>In some cases, when you have the classic block or you have the HTML, I don&#8217;t remember, other blocks, you know that for some blocks, you don&#8217;t have to do this processing, because they are not using this automatic classname handling. So you can skip that, that&#8217;s one improvement from start.</p>\n\n\n\n<p>But also this ensures that the logic is executed only when really necessary. So when the block is valid, you don&#8217;t have to run that at all. But with the previous solution, it also was always applied. It had a really big impact when the post was really big.</p>\n\n\n\n<p>So, it&#8217;s very technical, and it&#8217;s something that a small group of people can really help with. But Riad, he&#8217;s just the king of performance. He knows who to do all this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> He loves to hear that, the king of performance. No, but it also shows that it only can be an iterative part that you can get it perfect, and you can get it to be more performant after the fact.</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p>That brings us to the experiment section of these release notes. It will highlight the template part placeholder now when you create a new template part with the site editor. So experiments has the full-site editing in there, and the navigation screen are the only experiments right now in the Gutenberg plugin that you have to switch on.&nbsp;</p>\n\n\n\n<p>The site editor itself is actually already switched on. I don&#8217;t know why it&#8217;s still in the experiments there. But when you create a new template part, say a header or maybe a sidebar item, it now asks you for a title as well in the create flow. So you don&#8217;t get as many untitled template parts as you got before. You can think about the title right when you create it. That&#8217;s definitely a improvement of the flow.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I also hear that the template part is going to be promoted to the stable feature. So it means that will be included in WordPress 5.9, for sure. And maybe that even will happen in the next plugin release. So, 11.4. And that&#8217;s great, because this is a very exciting feature. It will open a lot of possibilities, even for classic themes.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, and now that it&#8217;s coming out of experimental means there are more eyeballs on it, to test it and to figure out what needs to be changed, or if it needs to be changed and what bug fixes are there.&nbsp;</p>\n\n\n\n<p>So the navigation link block, that&#8217;s a child block of the navigation block, now actually also has the ability to remove a link, which is certainly in the process of creating a navigation, a useful tool. Now, it&#8217;s there.&nbsp;</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think that brings us to the documentation section. And there is one item I wanted to highlight. Because we have those block patterns that you can search from the block patterns directory. And of course, some site owners don&#8217;t want to have them. So now there is a document explaining how you can disable that.</p>\n\n\n\n<p>That part was missing, but it was possible from the release, WordPress 5.8. So it&#8217;s now covered. If you don&#8217;t like that, you can check out how to disable that.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, as any WordPress feature that is new, not only needs a way to enable it, it also needs a way to disable it, to make it as flexible as possible for all the WordPress instances that are out there.&nbsp;</p>\n\n\n\n<p>Which brings us, so there are quite a few other smaller changes to the documentation that you can check out for yourself, because they are just changes to existing documentation pages.&nbsp;</p>\n\n\n\n<h3><strong>Code Quality</strong></h3>\n\n\n\n<p>Code quality, there is one highlighted that is the remove of the experimental prefix, and rename the theme JSON files.</p>\n\n\n\n<p>If you&#8217;re theme developers, you now can remove the underscore, underscore experimental prefix on your theme JSON files as well. It will not read anymore from the experimental theme JSON file either.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yes. And there is a small change in the API. So in the core data, there was a method to get authors, and it wasn&#8217;t very flexible. But it&#8217;s now deprecated in favor of get users, that allows you to pass the flag to return only authors. But also, it has a lot of other features that makes it better use. So it&#8217;s only changed to consolidate the API and make it easier to discover.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Excellent. Thank you. Do you want to go through the tools section?&nbsp;</p>\n\n\n\n<h3><strong>Tools</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There is one big change in that regard. So there is a lot of complaints about build tooling. And you related to that, because I was one of a few folks that were involved in updating Webpack to version five, and it was a pain. We started the first try in January, I guess, but it failed because of several issues.&nbsp;</p>\n\n\n\n<p>And now we finally made it, and it&#8217;s going to be&#8230;. So the change is in the Gutenberg plugin already, and it has a good impact on the bundle size. It has decreased. It was 30 kilobytes or less that&#8217;s going to be sent to the user, which is a big win. So yay for Webpack 5.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yay.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> But there&#8217;s more to it. This change will also be applied in the WordPress scripts. We should expect NPM publishing for this package later this week. And so basically, if you are using default config files, everything should be good. If you are using your own custom config, then if you want to upgrade to the latest version, be prepared for some troubles, because it isn&#8217;t easy. Webpack isn&#8217;t backward compatible, to the degree that the WordPress is. It&#8217;s just what it is.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, as we say, there will be dragons.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> For sure, if you have a custom config, it&#8217;s not easy. I&#8217;ve been there already. And the next step, of course, will be to do the same update in WordPress core. There&#8217;s three places to update. I understand the frustration from people who try to use those tools by themselves. You have a lot of courage.&nbsp;</p>\n\n\n\n<h3><strong>Testing</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And then there&#8217;s one other features that we will highlight from the testing section. And that is that the mobile team added a guide for integration testing, if I say this right, and it turns out to be quite complex.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, in general, we talked a lot last time about the barrier of entry for developing for WordPress. The way to start, even writing tests for the mobile apps is just on completely different level. It&#8217;s like a skier wrapper or something like that. It&#8217;s just so complex.&nbsp;</p>\n\n\n\n<p>I guess this shows how the, not new web, but how the world evolves. You no longer only care about the browser, but there is also the phone, the tablet, and building apps for that. So if you are curious to learn how you could contribute to the native apps, if you are interested in this type of development, that&#8217;s definitely a good way to check and play with all those tools and see how complex the setup can be, if you are going outside of the web bubble.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I&#8217;ve never really ventured into the native apps development. But I had hoped that React Native would be a path to go. And then I read, oh, by the way, this brings us to the end of the changelog. And we are now more in the section of active development, what&#8217;s discussed.&nbsp;</p>\n\n\n\n<h3><strong>What in Active Development or Discussed</strong></h3>\n\n\n\n<p>And we will share a post to Matt Chowning that he wrote about building an editor by sharing code between Android, iOS and web with React Native. It only brings you so far to reuse code base. And it seems that the mobile team recreated some of the Gutenberg experience, recreated them from scratch, reusing components, but not reusing some of the code base.</p>\n\n\n\n<p>It&#8217;s quite an interesting read, finding out how complex that whole thing is when you do it through a phone screen and operating system.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, but the good point that the team, the WordPress mobile team is very happy about choosing React Native, and they emphasize that the speed of development is really good, because they can share the logic part of the editor that is developed for the web version. All the JavaScript code, they can reuse, and they don&#8217;t have to write it from scratch.&nbsp;</p>\n\n\n\n<p>And what&#8217;s even more important, whenever there is a performance improvement, they get the same improvement on their side. And also, from my perspective, whenever they find something that is not working properly, they contribute back, so all parties win here. That&#8217;s the beauty of that setup.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And everybody benefits from that. The mobile version is also part of the overall Gutenberg GitHub repository. So there is some synergy there as well.&nbsp;</p>\n\n\n\n<p>All right. So two weeks ago, there was this big discussion about barriers to entry. And in our weekend edition, 180 and 181, on the Gutenberg Times, I shared quite a few blog posts and discussions on podcasts about that topic. So if you want to dive into it some more.</p>\n\n\n\n<p>But Justin Tadlock from the WordPress Tavern, interviewed Matias Ventura, the Gutenberg Project lead on that. And it&#8217;s an interesting read, in that regard, that it really depends on the knowledge of who is developing for the web. And it&#8217;s a different perspective from someone like me who started with HTML, where only HTML was around. And it took about a couple of years before CSS came in. And then it took another couple of years before I needed to write some early JavaScript.&nbsp;</p>\n\n\n\n<p>I only had to add one little thing to my whole toolset. But it was also the speed of things. But latest in 2004, &#8217;05 or &#8217;07, I was left behind on all the cool development. And now caught up with it through WordPress, because that&#8217;s when we started, in 2010, we started with WordPress. And it took me about five years before I even had to touch code on a WordPress install to make a feature work.&nbsp;</p>\n\n\n\n<p>So it really depends on where you come from. I jump from a ColdFusion development base to a very rudimentary PHP, to good JavaScript knowledge. The barrier is different for me, from someone to build a plugin, from someone who has 10 years of PHP experience and knows all the intricacies of WordPress, because for 10 years, she has been developing in that space. So that&#8217;s one thing.&nbsp;</p>\n\n\n\n<p>And Matias also points out that the theme creation, and the new on ramps for theme developers is so much lower than it was the last 10 years for theme development in WordPress. Because now you can start with the block-based templates, you can do block patterns, you have the theme JSON to control some of the features.</p>\n\n\n\n<p>And you could basically write a new theme without touching code, because the site editor gives you all the tools with it, or at least that&#8217;s the vision in 5.8. The 5.9 will come close to it. And then with patterns, you can account any theme in any case very easily with just assembling a few blocks.&nbsp;</p>\n\n\n\n<p>He also mentioned &#8230; go ahead.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think it&#8217;s very interesting to hear the vision from Matias, because he also shared this preliminary scope for WordPress 5.9. He knows what&#8217;s the end goal. And that&#8217;s much easier to see the landscape, how it will look in a few months when you will be able to fully benefit from all the latest development in the space of block themes. And that&#8217;s one way of looking at that.&nbsp;</p>\n\n\n\n<p>Also, I think that in general, if you look at the development for the web 10, 15 years ago, you didn&#8217;t compete with mobile apps, and they didn&#8217;t exist at all. Everyone was using Nokia or other phones that only allowed you to play Snake or something similar, that was it.</p>\n\n\n\n<p>And so the mobile apps, tablets, they change the perception what you can do, how you interact with those devices, and all the gestures and stuff like this, and animations and the performance. That was so much better because it uses some native technologies. So if you combine all those aspects together, it&#8217;s really hard to tell that the development should be still simple and the barrier of entry should be simple.</p>\n\n\n\n<p>It cannot be, because we have so much bigger expectation as users these days. So of course, there are some libraries that help with that, but exploring the libraries, finding the right one and integrating that, it&#8217;s another level of complexity here.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I also think there&#8217;s a level of decision paralysis, because if you have too many choices on the libraries, the chance that you pick the wrong one is really high. And then for some people, that is an existential decision. And if your business depends on it, it makes it an existential decision that a lot of other people depend on that.&nbsp;</p>\n\n\n\n<p>I can see that, but it&#8217;s not only WordPress. All we know is WordPress, but it&#8217;s in all the areas that are out there that develop for the web.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Go on.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, all I wanted to say was, when I look at what all needs to happen at the same time and play together, all the little pieces, it&#8217;s actually a miracle it works at all.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> That&#8217;s true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Because so many things could work. We should all be blessed that we actually can get something together that works well for millions of people.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, I think we all were happy about the limitation of the web 15 years ago. You had the basic HTML, CSS was very basic. Now, there is CSS4. So the number of features that were added in the meantime is, scope is so gigantic, and you have to learn fifth method of positioning elements on the page. And also, you have JavaScript that has evolved, there are new features in the language.</p>\n\n\n\n<p>Even PHP, if you look back, PHP 4 or 5, it&#8217;s a completely different language than PHP 8 that you have now with types and some strict checks and so on. And the tools that are around, that we didn&#8217;t have the interest back in the day, now it&#8217;s wildly popular. And end-to-end testing was very hard in the past. Now, you have so many tools to pick from.&nbsp;</p>\n\n\n\n<p>So it&#8217;s up to you what you pick, because you could still use only PHP, HTML and CSS and some basic JavaScript and that should be fine. But the question is, if users will like it, or in terms of on the front end experience. But also, if the customers for all the businesses that WordPress supports, will be still happy to continue using very simplified interface, that is very technical.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think there&#8217;s so many things for many people. I think we will have a link to the WordPress Tavern article with the interview with Matias in our show notes. It&#8217;s definitely worth a read. And that brings us I think to the end of the show.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> One more thing, definitely look out for the Gutenberg Times newsletter, because it has a lot of links to those discussions. This week, you should expect more because those discussions still happen on the web, on Twitter, so be aware and look forward to it.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I&#8217;ll have those in the show notes as well. This week&#8217;s weekend edition is not going to happen until next week, because I&#8217;m still….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> A suspense, nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> A suspense on that, because I&#8217;m still on vacation and I&#8217;m visiting family in Europe. But before we end, again, please heed the call. If you have some time, heed the call to the FSE testing call for number nine, working with the headers and navigation coming to the site editor to Gutenberg. We will need your input, we need to learn from your experiences and also from your expectations. What you tried to do, what you were able to do, and what didn&#8217;t work and what you expected how it would work. I think that would be really, really helpful for the team to come out of experimental stage and get into the main plugin with the navigation screen and block.</p>\n\n\n\n<p>As always, the show notes will be published on the Gutenberg Times podcast at <a href=\"https://gutenbergtimes.com/podcast/\">gutenbergtimes.com/podcast</a>. This is number 50. We&#8217;re halfway to number 100. And if you have any questions and suggestions or news you want to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>.&nbsp;</p>\n\n\n\n<p>Thank you so much, Greg, for spending this morning with me. I hope you have a wonderful afternoon. Thank you all for listening. I&#8217;ll say goodbye.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Thank you, Birgit. Thank you, all our listeners and see you next time.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right. Bye-bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Oct 2021 19:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Gutenberg Times: Changelog #49 – Gutenberg 11.2, Drag and Drop, Flex Layout, Core Data Shortcuts and Modern WordPress Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=18714\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://gutenbergtimes.com/podcast/changelog-49-drag-and-drop-flex-layout/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34656:\"<p>Birgit Pauli-Haack and Grzegorz Ziolkowski discuss Gutenberg plugin release 11.2, drag and drop, flex layout, core data shortcuts and modern WordPress development.</p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-49-drag-and-drop-flex-layout#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/changelog-49-drag-and-drop-flex-layout#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-18714\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<ul><li>Chris Wiegman’s <a href=\"https://chriswiegman.com/2021/08/the-changing-wordpress-ecosystem/\">The Changing WordPress Ecosystem</a>,</li><li>Marcus Kazmierczak’s <a href=\"https://mkaz.blog/wordpress/modern-wordpress-development/\">Modern WordPress Development</a></li><li><a href=\"https://wordpress.org/about/philosophy/\">WordPress Philosophy</a>, Design for the Majority</li><li><a href=\"https://chrislema.com/using-wordpress-without-writing-any-code/\">Using WordPress Without Writing Any Code</a> by Chris Lema</li></ul>\n\n\n\n<h2>Gutenberg 11.2 </h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/08/05/whats-new-in-gutenberg-11-2-0-4-august/\">What’s new in Gutenberg 11.2.0? (4 August)</a></li><li><a href=\"https://wptavern.com/gutenberg-11-2-expands-color-support-for-search-and-pullquote-blocks-introduces-experimental-flex-layout-for-group-block\">Gutenberg 11.2 Expands Color Support for Search and Pullquote Blocks, Introduces Experimental Flex Layout for Group Block</a></li></ul>\n\n\n\n<h2>What&#8217;s in active development and discussed? </h2>\n\n\n\n<ul><li><a href=\"https://codehealth-riad.vercel.app/\">Is Gutenberg Fast Yet?</a></li><li><a href=\"https://github.com/WordPress/gutenberg/issues/33687\">Flex Layout Iterations&nbsp;</a></li><li><a href=\"https://wordpress.org/plugins/layout-grid/\">Layout Grid Block </a>by Automattic</li></ul>\n\n\n\n<div class=\"wp-container-616f50bd3029d wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Did you like this episode? Please write us a reviewhttps://lovethepodcast.com/gutenbergchangelog</p>\n\n\n\n<p> </p>\n\n\n\n<p><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></p>\n\n\n\n<p><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></p>\n</div></div>\n\n\n\n<h2 id=\"transcript\">Transcript </h2>\n\n\n\n<p> </p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello, and welcome to our 49th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about the Gutenberg plugin release 11.2, and drag and drop, flex layout, core data shortcuts, and modern WordPress Development.&nbsp;</p>\n\n\n\n<p>I&#8217;m Birgit Pauli-Haack, curator at the Gutenberg Times. I&#8217;m here with my co-host, Grzegorz Ziolkowski, code wrangler at Automattic, and WordPress core contributor. Good morning, Grzegorz, how are you doing? I am so glad that we have the same time zone together for the next two or three episodes. And good morning to our listeners, we are glad you join us again for this episode. How are you this morning, Grzegorz?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Good morning, Birgit. I&#8217;m so happy to be recording this one in the morning for the first time, it&#8217;s such a refreshing experience and something new. Everything is great here, and I guess the weather is similar at your place now, like in Poland, it&#8217;s changing rapidly everyday. Yesterday it was sunny, then raining, today it&#8217;s cloudy. So, you have everything. How about your place? How do you enjoy it?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. We are on the same weather, it changes through the hour, we have one hour, we have sunshine, then we have thunderstorms and then it comes back. It&#8217;s almost like Florida. But I&#8217;m here in the makeshift office at my parents’ house, it&#8217;s kind of working from home home. It&#8217;s a little bit different, because it&#8217;s a big household, of course. And it took us an evening to distribute the fast internet that comes in on the second floor to the basement. But there is something like, it&#8217;s wired through the power grids, it is actually spectacular. It hard lined in through the network, it&#8217;s very interesting what they put together.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> No, that&#8217;s really interesting. I&#8217;m keen to learn more after the show about that because I don&#8217;t have the cable to my office and sometimes the wifi isn&#8217;t great enough. And I miss that when I was preparing everything, I&#8217;m glad that there are some other ways to do it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I&#8217;ll be happy to get deeper into that.&nbsp;</p>\n\n\n\n<h3><strong>Communication Contributions</strong></h3>\n\n\n\n<p>So, for our show today, the first section today is a community contribution, and I appreciate Chris Wiegman and Marcus Kazmierczak blogging about WordPress development in 2021. And they&#8217;re trying to define the barriers to entry for WordPress users, are they low, or they are high. I think we all are getting a few blurry lines, depending on what kind of stakeholders, or what kind of users you&#8217;re talking about. I haven&#8217;t read all of the blog posts, and I definitely need to read them again. But Chris Wiegman started the discussion on Twitter and I quote him, &#8220;The deeper I get with modern WordPress development, the more I understand why newer devs don&#8217;t like to work on it. This is not the same project that I was in, in the past. The learning curve is now extremely high, regardless of past experience.&#8221; Chris Wiegman on the Twitter verse, and we&#8217;ll link to that tweet in our show notes.</p>\n\n\n\n<p>And there are quite a few that chimed in on it. There was Alain Schlesser, Rich Tabor, and others.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Matias Ventura.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Matias Ventura&#8230;.Yes, Jessica Lyschik as well from Germany, and Marcus Kazmierczak, I might have put just his name, last name, but I need to ask him how to pronounce his name. He wrote a blog post about modern WordPress development and, pretty much as an answer to Chris Wiegman, and Chris Wiegman actually put some more thoughts into it on his blog, with changing WordPress ecosystems. What do you think about, you came from a different content management system to WordPress, how many years ago?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I started like with development with Drupal and it was like, maybe 10 years ago. And the entry level for Drupal is so high that going back to WordPress seems like you are in a familiar place and everything is so simple. So it really depends on your background, if you have a strong PHP background, then it might be easier to start with Drupal then maybe WordPress. If you don&#8217;t have any experience, it&#8217;s going to be hard no matter what you would like to do. So, it&#8217;s definitely a very complex topic. One thing that I would like to emphasize that WordPress has this badge with the fields of each of ours. So one of the sections is designed for the majority, it says that the way that WordPress is structured should be optimized for the end users rather for the developers.</p>\n\n\n\n<p>And this is happening with full-site editing. And that&#8217;s why there is no, this impression that writing for the, like extending the block editor is hard and it&#8217;s something that definitely needs more attention, but it&#8217;s also a very complex thing to operate in this area of a very rich user experience and having so many features that so tightly related to the DOM, to the browser. So, it&#8217;s not an easy place to be when you are a developer. So I suspect that if you would like to achieve even like half of the goals that the Gutenberg gives you in the classic editor, I don&#8217;t think that it would be doable at all.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I like how Marcus iterated that the competition between WordPress, is for WordPress and it has had a remarkable growth rate, even in the last four years, going up to 42% and the competition is not Drupal, or Wix, or Squarespace. The competition lies through the social networks who made it so easy to create a post like on Instagram connect with Venmo, and then have a shop up there. So, following that path, there is an expectation from the users to also make it as easy as possible, and intuitive as possible. And of course the block editor is for quite a few developers, a moving target, the goalpost kind of still moves, because the team hasn&#8217;t finished developing it. It&#8217;s still on its way. And listening to Matt Mullenweg, he says, it&#8217;s going to be a 10 years, two years or four years, into a 10-year project.</p>\n\n\n\n<p>So it would be that way and probably settle down quite a bit, but there is always keep moving, but I&#8217;m also wanted to outline, I found a tweet by Matt Edgar, who&#8217;s an editor and writer, and he says I fear that WordPress goes the Microsoft Ballmer way, where it&#8217;s all about developers, developers, developers, and not about users, users, users. So, that&#8217;s the whole other extreme there. And right now it seems to be on a middle path. I&#8217;m not sure it&#8217;s the right path, but it&#8217;s at least kind of, if you offset both sides a bit. There&#8217;s something new coming by.&nbsp;</p>\n\n\n\n<p>But Chris Lema actually posted a, his latest blog post was about using WordPress without writing any code. And so that&#8217;s the goal pretty much, but he is actually preparing for a presentation on a non-WordPress conference. And, that don&#8217;t use WordPress all that much, but wants to make a case for WordPress.</p>\n\n\n\n<p>So that blog post was very interesting to me as well, figuring out how to do this without, yeah. There&#8217;s a few plugins that he uses, but most of it is based on the native blog editor. So I think there is a great discussion going on and we all need to be a little bit more taking, and someone who has been successful with WordPress for 10 years and doing what they&#8217;re doing, bringing them all along, but bringing them piece by piece and also teach a lot about the new tools there, like react, yeah. MPM and all these new cool features that are hard to learn, sometimes when you haven&#8217;t been in this space for a long time. Yeah. I see it for myself, I came to WordPress from a total different programming language. And I programmed my own content management system until I saw WordPress offering so many features out of the box on their free plugins.</p>\n\n\n\n<p>I wasn&#8217;t able to charge my clients that much for custom developers when there is a different system out there that you can use that they can use. And I started WordPress 10 years ago and it took only four, five years until we actually had to write code, PHP code. But I was a PHP novice, I didn&#8217;t get into it, until writing code, about six years ago or something like that in PHP. And it was so easy for an implementer to do that. And it will still be that, but I will never say, but for our clients, it was never easy to use WordPress when we say that it&#8217;s easy to use WordPress 10 years ago, it wasn&#8217;t really. There were multiple, was it a Tammie Lister who did a run down from how to change a theme at the beginning of Gutenberg, I thinks she had 62 steps to change the theme.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: I can imagine that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, so, it&#8217;s getting really easier and easier, but of course there is a disruption there and we&#8217;ll use different tools there. So, I guess we have a lot of ready material for our listeners and we certainly wish that you communicate with us your ideas of what you think. And maybe also be a little bit more specific on, when you find it hard to work with WordPress. What exactly is it that trips you up, or that sometimes it&#8217;s small thing, sometimes it&#8217;s a big thing. And we all learn with that going forward, so we will have the blog, Chris Wiegman&#8217;s blog, his tweet and the thread around it, and Marcus Kazmierczak&#8217;s Modern WordPress Development, link to the WordPress Philosophy, and we also have Chris Lema&#8217;s Using WordPress Without Writing Any Code in the show notes for you to read.</p>\n\n\n\n<p>Which brings us to What&#8217;s released? The Gutenberg 11.2, do you want to get us into it?</p>\n\n\n\n<h3><strong>What’s Released &#8211; Gutenberg 11.2</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Oh, sure. Let&#8217;s start with features.&nbsp;</p>\n\n\n\n<h3><strong>Features</strong></h3>\n\n\n\n<p>So this plugin release, it doesn&#8217;t bring so many new features. It&#8217;s obvious the reason why it happens is because there is a summer on the Northern hemisphere and a lot of contributors that I engaged with on a daily basis we&#8217;re not present. So, there&#8217;s definitely some slow down. This is also a great time to do some improvements for the developers, so they don&#8217;t feel left out. And there are also some efforts to improve performance, on the features level. So most of the work is around blocks and adding support, functionality, which supports something like colors, or border, and similar features. And the biggest change is this for the search block. It&#8217;s a bit strange when I learn about that, that you can add color support, but for the button that is in the search form. So, you can modify something similar to other blocks, like the background color or the text color, but it&#8217;s only for the button, and there is also a border color support, are they there? I&#8217;m not quite sure it&#8217;s the border is only for the button as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I tested it yesterday. I got a little bit sidetracked because I found a bug there, but not a bug, it&#8217;s the display thing, but the border color, as well as the support full border is actually for both the field, the input field, as well as the button. And you also can have different alignments for that. So it&#8217;s quite nice. You can actually, the example in the release notes or the make posts towards actually in a group block with, with image, background or color dual tone background, and then, search block on top of, it&#8217;s quite nice. Yeah.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. And we use the border edges functionality, they have very nice effects, that you don&#8217;t have to use rectangles anymore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Found the borders in fashion again, so every 25 years we have rounded corners.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The good thing is that you need to use background images that swap with JavaScript on the fly like 20 years ago. But it&#8217;s back and the pullquote block, it also got board and color support. And the examples that were shared in the posts that described all the changes there is, includes very interesting effects, like you can use some sort of dotted border that use like very large dots and it creates a very nice FX for the pullquote. So I encourage everyone to give it a try and check some crazy values there and see how it looks like, because it might turn out that looks so nice that you would want to have it. And that&#8217;s basically all about features.&nbsp;</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>And we also have several enhancements, which one of them I would consider or other as a feature, this is a button that was added in the publishing flow.</p>\n\n\n\n<p>So when you schedule or publish the post, there is the sidebar, that shows up on the, like, it goes from the right side. If you are in maybe a regular, no like, you&#8217;re using in English. And if you&#8217;re using Arabic, you will be go from the other side. That&#8217;s why it&#8217;s confusing to explain. But anyway, the feature is that at the end, there is like summary, what has happened to which side you, you are using. And you can go and view the post there, but next to it, there is now a button that allows you to create another post. I don&#8217;t know if it&#8217;s very useful because at least for me, I don&#8217;t really write another post just after I finished the one, I rather celebrate.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think it&#8217;s more for the micro bloggers that kind of want to upload an image and then do the next image like an Instagram post. But I like that it&#8217;s now trying to keep a user in the block editor for some publishing flows. I need to check, so it&#8217;s in the second step. Oh, it&#8217;s in the last step of the publishing flow. So you get the view post and as you explained it, there&#8217;s the add a new post button there. I need to test this out, how that behaves in the two-step process for the publishing process. So one of my pet peeves is that I started with the block editor. Can I log into my website and then already have add new post, at the first screen that I get to.</p>\n\n\n\n<p>So I don&#8217;t have to look for all posts and add new and all that. Because all I do on a website once it&#8217;s set up is publishing posts. So, I might just want to start there, but this is the end of it. So after I do one, I can stay in the block editor with it and update.</p>\n\n\n\n<p>&nbsp;If you do photos, if you say, I want to just highlight certain links and then link out. I like it. So there is also some enhancements for the widget editor, and then for some of the components, but there seems to be a quite finite, not finite minuscule a little bit, not so obvious for people, but it makes the experience a little smoother. One of it is the core data, you can pass a query argument to a data selector shortcut. Could you explain that a little bit for me?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So, the change for the core data is about passing. Mostly the context that is going to be used with the REST API. That was actually one of the missing features. So if you know how our REST API works, it allows you to fetch the data with different contexts. So let&#8217;s say to view, you get a different set of fields, then when you want to edit something and every REST API endpoint defines it differently. So thanks to this change, you can have full control over that when using core data.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Excellent. Excellent.&nbsp;</p>\n\n\n\n<h3><strong>Bug Fixes</strong></h3>\n\n\n\n<p>Then we had some bug fixes. One is for the Featured Image, now authors can select images that were uploaded by other users. So, if an editor uploads an image, now authors can also use them for the featured image and their blog post. And that&#8217;s certainly helpful, and reduces the duplication of images, probably quite a bit, in the media library.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, definitely. One thing that I marked is that there was a change in the description of the embed block that was referencing Instagram. And I was surprised seeing that and turns out that Instagram is no longer supported as an embed in the block editor. So, that might be confusing. That was a fix, but it&#8217;s also good to know that Instagram embeds are no longer present in WordPress.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think that was taken out last October when Facebook changed, how they, that you now needed a developer account with Facebook to use some of the, while the embeds, they no longer an embed publisher. So, now they changed it. There are quite a few fixes and, we had quite a few recommendations for plugins, and I certainly can reference that in the show notes again, but I think there was just an oversight to use Instagram as an example on how to use the embed with the Instagram, not doing it anymore. But the bigger problem was that it was showing up in the inserter when you started typing in Instagram. And so that would come up. So, that was leading the user a little bit astray on their publishing process. So, the one bug fix, also was the most used terms, we were running into a 403 error for non administrators, that has been fixed. And then we kind of tripped up a few users, I would imagine.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So, most of the bug fixes where a smaller changes closer to the code quality improvements, like for the FocalPointPicker component, there is now additional check that verifies the type is correct. Like NAN which stands for, Not-A-Number in JavaScript. So, nothing really interesting, like this is just everything to ensure that there are no unexpected behaviors in some edge cases.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. But I&#8217;m glad that the team takes the time to go through that and fix those little things as well.&nbsp;</p>\n\n\n\n<h3><strong>Performance</strong></h3>\n\n\n\n<p>So then we had some performance updates and one of them pretty much only one that&#8217;s a drag and drop and it&#8217;s now, drag and drop is such a wanted feature. And it needs to work really well to be useful, and Kerry Lui did some changes there and fixes there. So I don&#8217;t understand exactly what the changes were there.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I don&#8217;t know. I know, it&#8217;s very complex related to how the browsers work. So, if you are keen and learn how you can profile the performance of layouts and, CSS, how it works, the drag and drop, it&#8217;s very well explained in the PR that&#8217;s linked and Kerry, she&#8217;s doing fantastic job on that field. She has a lot of expertise. So you can follow along if you want to learn more.&nbsp;</p>\n\n\n\n<p>So one thing that I checked, one when playing quiz is that in the last episode, I was wondering if it is possible to drag and drop a block from the list view to the editor canvas or the other way around.</p>\n\n\n\n<p>And it turns out that you can, and I was surprised. Yes, I don&#8217;t know how it works because I don&#8217;t think it contributed anything to that functionality at all. But it&#8217;s very well designed. If you can do so, so interesting interactions. One thing I noticed that there&#8217;s a bit of delay when you drag from the list view to the canvas, then it updates in the canvas and then the animation starts in the list view. So, it&#8217;s not the perfect experience, but you know, it was right.</p>\n\n\n\n<p>Birgit Pauli-Haack: Right. But it seems that that&#8217;s something that Kerry was working on to avoid layout and repaints, but you definitely need to have it. So it&#8217;s all in the right order when you drag it from one canvas to the list view and back. So I can see that that&#8217;s a great challenge for programmers to get right, yes.&nbsp;</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p>So, and that brings us to the experimentation or the experiment section. And right now, Riad started to put in a prototype and this plugin for a flex layout supported by the block editor. You made some notes on that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. Because I first wanted to try how it works, but it turns out that it&#8217;s not that simple to, that on your website. So first of all, it&#8217;s an API change and that API is hidden behind a special flags. So if you add the examples for the group block and to enable that you need to change the block JSON file, for the block, and there is experiment layout already present, but it&#8217;s set to true. If you want to use this new feature, you need to choose an object, and there is all over switching flags, but this API is still in progress in, we will change for sure, because Riad left a ton of notes, how it can evolve. So he said that we could introduce more layouts, such as grid or absolute position in container. So it&#8217;s really nice when you play with that, but there&#8217;s one more thing, it only works with full-site editing themes, that content theme JSON file.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It needs to be set in the block JSON, black JSON, as well as on theme JSON?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> No, we don&#8217;t need to do anything in the theme JSON but you need to have a theme that have this file, because this experimental layout, it only works for you if it&#8217;s full-site editing. I know it&#8217;s quite confusing, but I learned the hard way trying to play with that. But once it&#8217;s there, it&#8217;s really nice. So when you change to the flex, then if you had rows, then you suddenly have items next in one row next to each other. And even if you go and try to move the one of the inner blocks, then the arrows, will be to left and right. So they adapt to the layout, which is pretty nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think there was, years ago, there was an issue that one that, that I also, and I put an actually in the actively discussed. So let&#8217;s talk about it again there. So for the Changelog, there&#8217;s a lot of testing updates and a lot of build tooling updates. Is there anything that stand out that you wanted to talk about today?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There isn&#8217;t anything that would count my attention. So I don&#8217;t have anything to share. I mean I could but-</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, you could probably another hour or so about it.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I&#8217;m thinking mostly about our listeners and what could be interesting for them? So I didn&#8217;t identify anything this time, but there&#8217;s a lot of them and mostly this is related to the constant improvements to-end-end testing. And the fact that it&#8217;s almost stable these days, which is a great improvement for all the contributors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, absolutely. And there is actually a new testing team, not a new team, but the test team has more new reps. And Tonya Mark has written about that on the test blog. And so they all, some contributors that wanted to get deeper into testing of new versions of the WordPress core, as well as on Gutenberg and have more look at the tickets for needs tuner tests or needs E2E tests to, and add those flags to the tickets. So it can be quite a bit more stable, when it comes out in beta. So I think that&#8217;s a good development here too. And if you&#8217;re interested in that, I think that the test team can use your assistance there and your help and your expertise. Of course.</p>\n\n\n\n<h3><strong>Tools</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> So I think I have one thing, Riad Benguella, he’s exploring a special website that would track performance metrics over time for the Gutenberg editor. So, It&#8217;s the same thing that you see every time when a new Gutenberg release post is published the bottom of every post, and that would be something that like a chart that would show you how it changes with every Gutenberg release. So, to save some historical data, if that&#8217;s working, that would be really nice to observe how it all changes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, nice. I just clicked on the link that was in the PR. So I&#8217;d like it. It&#8217;s a website that&#8217;s on Versal, and talks about the different, the type speed, the inserting, the opening, insert opening, insert of hover items, the load of the whole editor, selecting block, selecting and insert a search. So it&#8217;s quite nice. Yes. I linked through the additional site as well in the show notes.&nbsp;</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p>And then there were some documentation changes. Some of them were as minuscule as adding a missing space or changing an intake, but one of them is the missing IATN, the internationalization filters for the documentation that was caught by one of the developers on Twitter and turned out it didn&#8217;t come over from when the documentation is automated or is imported into the WordPress developer handbook. So that has been fixed now. So you get all the filters that deal with internationalization of your block editor assets.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, that&#8217;s really nice for plugin or if they want to modify translations. And it existed there since WordPress 5.7. So, quite a while.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Sorry, it wasn&#8217;t in the documentation. And there was one block API change where you, I think it was one of your PRs, how to improve block assets or versioned. And what&#8217;s the background of this and why was that important?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Oh, it was purely technical on the WordPress core side. So there were some concerns that we were using the file time function, which is based on the five system to generate version for style sheets, which when you have more complex setup, like several servers, then the value might differ when load balancer kicks in. So, it&#8217;s fine for a single website, but for more complex, it&#8217;s not so reliable. So, the idea is that, we now have in block JSON version field, so you can provide the version of your block, and that is used for style sheets to define whether browsers should load a newer version of the same style sheet.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It&#8217;s kind of to bust out of the cache, for the style sheets. that&#8217;s very interesting. Cool.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. Even if it&#8217;s not provided, then the WordPress version will be used. So, it&#8217;s still not a big deal if someone forgets to do it, but in some cases, if you resolve, and then you probably should add that to our blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It makes it definitely explicit, it&#8217;s probably better than just assumed.</p>\n\n\n\n<h3><strong>Code Quality</strong></h3>\n\n\n\n<p>And then there were some code quality issues that were resolved or checked. One of them is a performance issue, that&#8217;s the refactor of the post author component. But George Mamadashvili, short MamaDuka, he refracted it, so it only requests fields that are needed for the rendering, like the ID and the name, and that reduced the trend data transfer considerably by roughly 50%. So, these kinds of changes or behind the scenes, they&#8217;re very technical, but it&#8217;s really important to know that they are happening. Good. So this brings to the end of the changelog. Yeah. It&#8217;s a good release and try out all the new features. And there is one discussion that we mentioned earlier was about the flex layouts.&nbsp;</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>Now that the prototype is in the plugin, Riad Benguella who published that also opened another issue to discuss further iterations.</p>\n\n\n\n<p>And we&#8217;ll have it in the show notes for you. It&#8217;s 3-3-6-8-7, the issue. And he describes the current state of the floor layout and the flex layout. And then the, an experimental way to switch between the two, as Grzegorz mentioned earlier, and then also outlines concepts that were resolved in a refactoring of some of the blocks to a declarative behavior on context, but Matias Ventura also chimed in and mentioned the grid layouts to be worth exploring as well.</p>\n\n\n\n<p>So if you dear listeners want to get in an early discussion of a new feature, this is the time for this feature, subscribe to the issue, chime in in the discussion, and lend your expertise and your ideas to the developer team. I know that way back in 2019, for instance, I think in November &#8217;19, Automattic published a grid layout block. And I wonder how many of the learned lessons can be applied to the core editor. So I&#8217;m also linked to that particular plugin and had his last updates were three weeks ago. So it&#8217;s still on, and it has about a hundred thousand active installs. So it&#8217;s definitely something people are looking for, and your discussion, you can definitely contribute to that.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> From my perspective, I think that the biggest advantage of the current exploration is that it or uses it an existing block and only add it as a feature.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, this is our bell, it&#8217;s the end of the changelog.&nbsp;</p>\n\n\n\n<p>So, we are at the end of the show, and I want to remind everyone too, if you have something that we should talk about, what questions or news that you want us to include, send them to email, <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@Gutenbergtimes.com\">changelog@Gutenbergtimes.com</a>. If you want to write a review, if you like it, write a review for us, please in either the iTunes or Stitcher, or any other of the podcast directories, it would really help us to spread this wide and far.&nbsp;</p>\n\n\n\n<p>All right. Well, thank you, Greg. This was a great time to spend with you again.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Thank you Birgit, and thank you for all our listeners, we are really glad to have your support. And so, see you all in two weeks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yes, two weeks, and thank you for listening. Bye-bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Oct 2021 19:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"Gutenberg Times: Changelog #48 – WordPress 5.8 Release, WordPress  Pattern Directory and Gutenberg 11.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=18593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://gutenbergtimes.com/podcast/changelog-48-wordpress-pattern-directory-gutenberg-11-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51307:\"<p>Grzegorz (Greg) Ziolkowski and Birgit Pauli-Haack talked about the release week with WordPress 5.8 out the door, followed by the new WordPress.org Pattern Directory and Gutenberg 11.1. They also discussed what’s next with Gutenberg.</p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://paulisystems.net/wordpress-consulting\">Pauli Systems</a></li></ul>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/changelog-48-wordpress-pattern-directory-gutenberg-11-1#shownotes\">Show Notes </a>/ <a href=\"https://gutenbergtimes.com/podcast/changelog-48-wordpress-pattern-directory-gutenberg-11-1#transcript\">Transcript</a></p>\n\n\n\n<span id=\"more-18593\"></span>\n\n\n\n<p><strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast via your favorite podcast apps!</strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes </strong></p>\n\n\n\n<h2>Releases WordPress open-source project</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2021/07/tatum/\">WordPress 5.8 Tatum</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=u0-J2Rqwh4U\">Too Marvelous for Words by Art Tatum</a>  Indeed, marvelous! 🙂</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/meta/2021/07/20/the-wordpress-pattern-directory-is-live/\">The WordPress Pattern Directory is live</a></p>\n\n\n\n<p><a href=\"https://buddypress.org/2021/07/buddypress-9-0-0-mico/\">BuddyPress 9.0.0 “Mico”</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/buddypress-9-0-0-transforms-legacy-widgets-into-blocks\">BuddyPress 9.0.0 Transforms Legacy Widgets Into Blocks</a></p>\n\n\n\n<h3>Gutenberg 11.1</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/07/21/whats-new-in-gutenberg-11-1-0-21-july/\"></a><a href=\"https://make.wordpress.org/core/2021/07/21/whats-new-in-gutenberg-11-1-0-21-july/\">What’s new in Gutenberg 11.1.0? (21 July)</a> <a href=\"https://make.wordpress.org/core/2021/07/21/whats-new-in-gutenberg-11-1-0-21-july/\">&nbsp;</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/gutenberg-11-1-adds-drag-and-drop-support-for-list-view-and-upgrades-block-borders\">Gutenberg 11.1 Adds Drag-and-Drop Support for List View and Upgrades Block Borders</a></p>\n\n\n\n<h2>What&#8217;s in Active Development and Discussion</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/07/21/whats-next-in-gutenberg-site-editing-status-check-late-july-august-2021/\">What’s next in Gutenberg? Site Editing status check (Late July-August 2021)</a> by Hector Prieto</p>\n\n\n\n<p>Global Styles: <a href=\"https://github.com/WordPress/gutenberg/issues/33447\">Design Tools Overview&nbsp;</a>by Matias Ventura</p>\n\n\n\n<p>Widget Editor: <a href=\"https://github.com/WordPress/gutenberg/issues/33242\">Widgets editor refinement</a> by Robert Anderson</p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/pull/25940\">Gallery Refactor</a>: Convert Gallery block to use Image blocks instead of having its own nested image format</p>\n\n\n\n<div class=\"wp-container-616f50bd44a80 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p>Did you like this episode? Please write us a reviewhttps://lovethepodcast.com/gutenbergchangelog</p>\n\n\n\n<p> </p>\n\n\n\n<p><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></p>\n\n\n\n<p><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></p>\n</div></div>\n\n\n\n<h2 id=\"transcript\"><strong>Transcript </strong></h2>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hello, and welcome to our 48th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about the release week with WordPress 5.8 out the door, followed by the new WordPress.org pattern directory, and Gutenberg 11.1. We&#8217;ll also discuss what&#8217;s next with Gutenberg.</p>\n\n\n\n<p>I&#8217;m Birgit Pauli-Haack, curator at the Gutenberg Times, and I&#8217;m here with my co-host, Grzegorz Ziolkowski, code wrangler at Automattic and WordPress Core contributor on the Core editor team. Good afternoon, Grzegorz. How are you doing?&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: Hi, good afternoon. I&#8217;m great, feeling relaxed. It&#8217;s the middle of the summer. The weather is good. It&#8217;s so nice to meet you again. How are things on the other side of the Atlantic Ocean?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, we are getting ready to jump over it on a plane to head to Germany in a week. We are glad that we finally can visit our parents after two years. We&#8217;ll stay for a while and work from home-home, like the real home. We think of our parents&#8217; homes as home still. We&#8217;re again quite excited, and we&#8217;ll stay for a long time, for five weeks to eight weeks. Really our parents are delighted, it is the least to say about it.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski</em>: That&#8217;s really exciting. Also we will be on the same side of the ocean when you fly to Germany, and also it&#8217;s the country next to Poland, so that&#8217;s exciting.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. Same time zone.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> We will be a few hours away. Same time zone.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Same time zone. Makes scheduling so much nicer. I don&#8217;t think we&#8217;re going to travel a lot to other places than just hometowns like Munich and Saarbrücken and Freiburg, Kenzingen, so it will be more on the southeast side than on the northwest side or northeast side, but I will go back to Poland very soon. I really loved Warsaw when I was there. It&#8217;s now five years ago. I met so many nice people there. It was really great. I want to go to Krakow, I want to go to Danzig. They&#8217;re a German word, so it&#8217;s really ….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> You should go visit Ratzwaf, my hometown. It&#8217;s eight hours away from Munich by car, so I recommend that one.&nbsp;</p>\n\n\n\n<h3><strong>What’s Released &#8211; WordPress 5.8</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I&#8217;ll definitely do that, but getting back to our Changelog here, what&#8217;s being released? There were a lot of things happening in the WordPress space this week, especially around Gutenberg and the new features in WordPress 5.8. We will catch up with it also in upcoming episodes, but for this week, I&#8217;m quite busy from all the releases.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Who isn&#8217;t?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I don&#8217;t know how you all do it. I think a lot of people are doing on it. WordPress 5.8 Tatum is out. It&#8217;s named after the American jazz pianist, Art Tatum. If you ever had hear him play, there are quite a few videos on YouTube that I played them. He&#8217;s a virtuous jazz piano player and it was just amazing to listen to it.&nbsp;</p>\n\n\n\n<p>The release is the reflection of hard work, of 530 generous volunteer contributors. Collaboration occurred on over 320 tickets on track and over 1,500 pull requests on GitHub. These are mind-boggling numbers, but that&#8217;s what Matt Mullenweg wrote in his release announcement. Yay contributors and yay Gutenberg team.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, that release is spectacular, in my opinion, one of the biggest at least since I joined the Gutenberg core team and I&#8217;m contributing to the core. This release is really packed with new features. As probably our listeners already know, because we talked about them quite a lot, this is the block widget editor, template editor, duotone feature, list view, and the new preference modal.&nbsp;</p>\n\n\n\n<p>Also, it&#8217;s not only the WordPress 5.8, it&#8217;s also new WordPress packages. All the updates were published just after the release went out, so if someone is using pieces of WordPress in a different way, they also can benefit from all the same functionality to everything that was added to the Gutenberg plugin after the release was cut out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s awesome. Those who use Gutenberg and Drupal or those who use Laraberg also get these updates in their system. On the evening of July 20th was the release date for 5.8, but on the evening, the meta team also announced that the first version of the WordPress pattern directory is live, and it comes with a ton of curated block patterns that were curated by the design team as well. Now you can just copy-paste them into your block editor. How cool is that?&nbsp;</p>\n\n\n\n<p>Block patterns are available in 13 languages, so the polyglots not only had to translate the WordPress 5.8, but also block pattern sites. Many more languages will follow. Shout out to the polyglot team that had to work on a lot of more translations than usual for a release. I think 55 locales, not necessarily languages, but 55 locales are actually 100% already finished up the translation for 5.8. That&#8217;s really amazing.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, that&#8217;s impressive. It always amazes me.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The pattern directory has, I don&#8217;t know, over 80 patterns in there and the patterns themselves are also released. There was a moment in time before the release where you saw the same pattern in 15 different languages, it was just interesting, where you had all the Korean signs and the Chinese signs and then the Hebrew. It was, I&#8217;d say, wow, this is amazing. It&#8217;s a worldwide project. Sometimes we forget about it, but when you see all the languages coming in, it&#8217;s so eye-opening for me.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, but this is not all because we had block widgets editor enabled. The BuddyPress team, they released a new version, 9.0.0, and it contains &#8230; they transform all the legacy widgets into blocks, so you can use them now on the widgets screen. That&#8217;s a great way to start with blocks when you try to convert shortcodes or widgets into blocks. Then, of course, on Wednesday the Gutenberg team released Gutenberg 11.1.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s a good point with converting widgets and shortcodes into blocks, yeah. I think you can connect with a BuddyPress team, and if you have trouble, connect with them and see what they did and how they did it and what trouble they had and how they overcome that. I think that will be a good way to start if you haven&#8217;t worked with blocks yet.</p>\n\n\n\n<h3><strong>Gutenberg 11.1 &#8211; Enhancements</strong></h3>\n\n\n\n<p>Now, Gutenberg 11.1 comes with a lot of enhancements. I really like that release because some of the blocks actually got some additional features. It was more a content creator and those who work with blocks to actually publish things get a lot more features now again after many, many releases where it was more about foundations and it was more about the future of Gutenberg rather than the here and now.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think that&#8217;s the benefit of having this big WordPress release out, that contributors can finally focus on bringing maybe not big features but some small enhancements, some small improvements about their workflows that improve that daily work for the whole group of people who are using Gutenberg, not only those who are waiting for full-site editing but also all the users that use it for a few years now and can benefit from all the feedback chart during that time and it&#8217;s now materialized into nice user experience.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Speaking about user experience, Ella van Durpe has added a PWA, and we talked about it I think on our last show, a little bit about it, but PWA is a progressive web app that you can install on your mobile phone. She has normally the front end of a website is installed as a PWA on a mobile phone, but the backend lives from the mobile responses side of the desktop version.&nbsp;</p>\n\n\n\n<p>Ella did something else and it allows the WordPress admin to be installed separately as a home screen and you have easier access, and it&#8217;s separated from the front end. I tested it yesterday quite a bit and it works very well for adding content to a site from your mobile phone. I used it together with the Hypernotes plugin, that&#8217;s a private notes-taking app, and it works very well with the PWA features there. I can make notes when I&#8217;m on the plane, on my phone. When I&#8217;m on the internet again, it updates the site when I&#8217;m back online, so that&#8217;s really cool.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I guess the offline support is only for the plugin you mentioned that Ella published together with this change, because I don&#8217;t think that it would work out of the box for the regular post or page publishing.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I will need to test this. Right now it&#8217;s just theory.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, but I guess that&#8217;s the ultimate goal, to have the support. That would be a game-changer for all the content creators. They could just write wherever they want.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s the aim for it. I hope. There might be some overlap, just for those who test it out, with the PWA plugin that the WordPress team at Google put in the repository and has already add quite a few installs, I think about 40,000 installs, active installs, but I saw on those PR notes or issue notes that one of the developers, Wes Rutter, is actually actively working on the Google PWA plugin to avoid any possible conflict with the Gutenberg WA experiment there. We&#8217;ll see how that works out. Good.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> We have some enhancements also to the blocks. One of them is at least the block, it has now link color control. For instance, columns block, it has a new feature which allows to stack columns on the mobile screen. Instead of having six columns displayed in a tiny screen, now you can enforce the setup wherein just like every column tags the full width of the screen. It&#8217;s a very nice enhancement that probably many website owners had to work around with CSS now it&#8217;s natively supported.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, and it&#8217;s supported without actually mobile breakpoints because those are moving targets. You don&#8217;t have to set them out, but you could if you want to.&nbsp;</p>\n\n\n\n<p>The PR that&#8217;s linked in the release notes, there were quite a few discussions and design testings, and everybody shared how they worked it out and what still needs to be done. I find it quite educating to go through that and read up about what the problems were, how they were solved and how they fixed the edge cases on it. Sometimes you just go and read up a bit some of those PRs.</p>\n\n\n\n<p>Also, in this release, the post term block now has support attribute for the separator. Sometimes, you want to separate them by comma. I think that&#8217;s the default. The separator of the post terms, so when you have multiple categories or multiple tags for a post, you can now also decide on the separator. You could even use emojis as a separator, I&#8217;ve seen. That&#8217;s quite funny.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think there is also for the tag cloud block, there were some changes that removed editor styles that were causing the different presentation in the editor and on the front end. I don&#8217;t see that so often these days, but there are still cases that are actively being improved, and that&#8217;s great, because the goal is just to have one-to-one experience. Especially with the full-site editing view, that will be very important because people don&#8217;t want to jump between the preview and the editing mode too often and anywhere in one canvas, not like in Customizer when you have this sidebar and you edit inside there. It&#8217;s just one place to edit everything.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s a little bit different from the block editor in the post and page screen. When you go there on preview, you open up the front end and look at it, but in the template editor, that&#8217;s not how the preview works. It&#8217;s a little bit different for the template editor. Really, I just read it again, and I really like that you now have the ability to change the number on the tags that are shown. If an editor puts 20 tags on a post but your designer says, &#8220;We only show five of them,&#8221; so you can put those in as a setting on the tag cloud block.&nbsp;</p>\n\n\n\n<p>There&#8217;s also for the link editing. It was a little bit cumbersome where you have to figure it out by osmosis, I guess, how to unlink a section from the link, and there is now an unlink button. It&#8217;s more on the link control pop-over. It&#8217;s more a link rather than a button, but now you can just click on it and the link disappears again, which I think is nice. It&#8217;s a fast way to do this.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There is also a very important enhancement that we probably should mention earlier. This is for the change for the list view. Now, there is support for drag-and-drop functionality. Previously you would have to go to the canvas of the editor and just grab one of the blocks, which is, some blocks take a lot of space, so sometimes it&#8217;s really hard to precisely pick the place or scroll the screen.&nbsp;</p>\n\n\n\n<p>Now you have this much smaller handles because it&#8217;s just one row in the list view and you can just take it and drag it to another place. It&#8217;s much more smoother experience and much more easier to put the block exactly where you want, especially when there are a few levels of nesting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s a really nifty feature. I tested it then I&#8217;m just, wow, this is a game-changer. Now you can put something that&#8217;s off the screen, grab it, and move it just up to a higher place on the post without having to screen things or if you don&#8217;t get it right in the selection, and then you just &#8230; it&#8217;s so much nicer because the drag-and-drop from off the screen to up the screen, off the screen, it was a little cumbersome, but if you use a list view drag-and-drop, it&#8217;s so much easier to change things around. Yay, good work, team.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The one thing that I just thought about is, can you drag something from the list view to the editor, or the other way around?&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No. No, you just drag it up and down the list view, but it will be copied on the editor.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I don&#8217;t know if it&#8217;s something that people would want, but it&#8217;s a nice technical challenge, right?&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. That&#8217;s a testing challenge. Good.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I just wanted to tell that there is one small enhancement. When there&#8217;s only one block in the drop-down menu in the block&#8217;s toolbar, that&#8217;s from the three dots icon, you could move to even there was only one block, which was impossible. Now this is fixed. It&#8217;s more like a bug-fixing in my opinion, but it&#8217;s also an enhancement for the experience.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> In the same region, it&#8217;s pretty much disable the post publish button if it&#8217;s saving non-post entities, if the meta tags or something like that is saved, non-meta box items that are in post meta. Also the preferences have publish label and consolidated option in the preference modal that was just released, and of course it&#8217;s the second iteration of it, and it gets some new updates then.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I really like this new &#8230; not that new, but the way how it evolved and everything is consolidated in one model. That makes it easier to discover all the options that are there.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I&#8217;m just still not getting, for many, many years, now I can say it for many, many years, it&#8217;s more than three, I would like to have the block manager be a little bit more feature-rich because if I switch off a block, I would really want to know if I used it multiple times, especially when it&#8217;s a block that comes from plugins. If I want to do a review, which blocks did I use and all that, I need a separate plugin to do that. I think it would be really helpful if it were out of the box in the block editor, but yeah, I&#8217;ll try my best and there are some plugins out there that can be a good inspiration for it.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I agree.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s my soapbox of the block manager.</p>\n\n\n\n<h3><strong>APIs&nbsp;</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> On this note, we can move to the new API section. There are two changes there. One of them is, in the Gutenberg plugin, we have now a new stable endpoint which allows developers to get the list of block editor settings. It&#8217;s more or less the same what is exposed from the server for every instance of the editor, but this one is a nice way to grab the same set of settings for a special way of dealing with the editor. The mobile app is a great example because this is the actual use case in this case, but it also gives the opportunity for other plugin developers to find ways to build their own instance of the editor and have all the settings.&nbsp;</p>\n\n\n\n<p>The other change is that we now have a new search control component that&#8217;s inside the WordPress components package or under WP.components.globalnamespace inside the editor. This control was used in a few places, so it was just extracted to make it available for third-party usage, which is a really nice simplification if someone needs that UI interaction.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Thank you, yes. Back to the block editor settings, what kind of settings would that be? Is it per block or is it the editor itself?&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> No. It&#8217;s per screen. At the moment, there are two different screens out of the blocks. One of them is for the widgets and the other one is for that post/page editor which is hard to tell what will happen with the site editor if it will be a new screen in the future, but that&#8217;s the distinction.&nbsp;</p>\n\n\n\n<p>What you get from there is there is a set of some default settings like all the types of the images you can use in the editor or you can get list of color presets, you can get the list of phone size presets. There is all those features that you have, and some of them can be customized and changed by the plugin with a big range of filters. In general, it&#8217;s all those things that you would like to customize for your site, and that&#8217;s set on the server.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It would also be something like the screen has a full-site editing mode or the spotlight on or something like that? Is that part of that endpoint?&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah, some of those settings might be there. If the full site editing team is enabled, that would be one of the settings, but for the spotlight, I think it&#8217;s only set on the client side.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Right.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The best way to check is just go to the WordPress code base and check all those options. Maybe it&#8217;s documented somewhere. If not, we probably should do that and expose in the developer documentation.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m assuming then, from the list that you had, it reads the theme JSON file or from the theme as well, so you get all the color palettes and all that. Good.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. It compiles from the different servers, so it&#8217;s not only that, but also some existing functions that are in the WordPress for quite long that you normally use like, for instance, a set of image presets like the thumbnail, large and so on. Just consolidated in one API. I know that the folder for the REST API endpoint, there is always an API schema. This is a good way. Probably this is how it will be documented because this will be published to the REST API documentation, so you have automatically generated docs.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Exactly. That&#8217;s definitely a place, when you write plugins or themes, to check it out and see if you can refactor some of your work before because that is now much easier to do.</p>\n\n\n\n<h3><strong>Performance</strong></h3>\n\n\n\n<p>There were just some performance features. One is, we talked about the list view, and the team also improved quite a bit the performance on it. That&#8217;s all in one package, but it&#8217;s in different places here in the changelog.&nbsp;</p>\n\n\n\n<h3><strong>Accessibility</strong></h3>\n\n\n\n<p>There are quite a few accessibility improvements here, but one is highlighted that the high-contrast mode is now available for the icon buttons. That certainly is for those who are visually a little bit impaired.</p>\n\n\n\n<h3><strong>Bug Fixes&nbsp;</strong></h3>\n\n\n\n<p>Then there were 34 bug fixes and there are some of them are cosmetics, some of them are just some edge cases, like the search block button position drop-down had some accessibility issues that are fixed. Now you can change the border radii. Sometimes when the Italian word has a different plural, sometimes it makes it into English language and sometimes it doesn&#8217;t. Comma and commas, it doesn&#8217;t, but radius and radii, it does. That&#8217;s why I&#8217;m a little chuckling a bit as I&#8217;m reading through this.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There was also a bug fix for the duotone feature. Now, it allows to avoid rendering duplicate style sheet and SVG files. As far as I remember, there was a change that consolidates all the changes to duotone and it&#8217;s moved to the footer, so that improved the readability of the DOM tree, which helps with CSS styling.&nbsp;</p>\n\n\n\n<p>There was also some technical changes. That was targeting the widget screen. That shows how the required compatibility is important in WordPress. In the past, long, long before the Gutenberg was a thing, there was the classic editor that was exposed under WP.editorglobal. When the Gutenberg was born, it was also put under the same namespace, which probably wasn&#8217;t the best idea in retrospect, but to work around that, there is now a special so-called “shin” that allows those two objects to coexist and they just merge together and show that all the functionality is exposed also on the widget screen.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Exactly. Thank you.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I know that there was also a last-time change for WordPress 5.8. There was this fix for select-all, if you are using mark comment A shortcut. The way it worked in WordPress 5.7 was if you wouldn&#8217;t have any selection, it would just copy all the blocks, whereas for WordPress 5.8, it didn&#8217;t quite work, but eventually the last approach was that if you click anywhere in the editor&#8217;s canvas, then it will copy all blocks, but if you use this comment A shortcut, when you click, for instance, on the header, then it would just work as in on other websites. There&#8217;s these distinctions that in my opinion make sense, but maybe it&#8217;s confusing for users if they are familiar with the old behavior.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Thank you for pointing that out. I didn&#8217;t realize that, but it makes total sense. What we heard from the tags block were the editor screen and the front end screen is matching the layout, that goes actually &#8230; some of the big fixes where these kinds of changes, where some of the styling that was applied to a block or after the block has been removed so it better matches the front end. It goes through quite a few of those updates.&nbsp;</p>\n\n\n\n<p>For those who work on the theme JSON and try to switch off and on some of the features, like the color duotone or the spacing units, you now can add empty values in the JSON file to signal that there is no feature for that. All right, that brings us to the &#8230; there&#8217;s one item that&#8217;s highlight that extracts snack bars into a separate component. Is it lunchtime yet?&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I&#8217;m after lunch.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You&#8217;re ready for dinner.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> &#8230; but I guess it made you hungry.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Made me hungry, yes.</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s a funny name for this little pop-up that shows up in Gutenberg on the bottom left of the screen after you do some impressive action, like you publish a post. There was some issue with the layering, so this is Z index in CSS. It was covered with something, it was fixed, and it was also extracted to its own section in the abstraction that is built inside the block editor which is called layout in the interface package. There&#8217;s some planned follow-up work for all the notices to have a special handling, so they are always displayed on top of everything else.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, yeah. Makes sense. It&#8217;s not covered up and people don&#8217;t know if it worked. Thank you.&nbsp;</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Now we can go to experiments. We have 16 items in this section. It&#8217;s not the usual number we saw in the past because some of those experiments are now in Core, so that&#8217;s a great progress.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Or are in the Gutenberg plugin. They&#8217;re not necessarily all in Core because the full site template editor is not yet in Core, the site editor stream, but it&#8217;s out of experimentation. The plugins, when you install it, you have it right away and don&#8217;t have to look in experimentation.&nbsp;</p>\n\n\n\n<p>The experiments are actually only three sections now. That&#8217;s a component system, it&#8217;s a G2 we talked about quite often already, but it&#8217;s now getting into the plugin, and then there&#8217;s a navigation block and the screen and the global styles. They are still in experimentation.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> In the component system, we have a new experimental component, so to speak, and it&#8217;s called flayout. Flyout?&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Flyout.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Initially, the idea was to call it pop-over, but this name is already taken by the existing component, but it has some different mechanics. It was really hard to map the new functionality to the old one, so the decision was made to just introduce a new one.&nbsp;</p>\n\n\n\n<p>The follow-up work is planned to use this flyout in as many places as possible and figure out if the old components still need to exist or it can be duplicated or just maybe the name will be pop-over after all. It&#8217;s really hard, all those changes for the UI to make it happen, especially when you know that so many projects use those components, which is both handling but also brings this complexity.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> If a plugin developer develops a block or something like that, they could use all those components, right, and experiment with it?&nbsp;</p>\n\n\n\n<p>Grzegorz Ziolkowski: Yeah. They can, but there is no guarantee that the API will stay and they are also prefixed with underscore, underscore experimental. Use it at your own risk.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Don&#8217;t try this at home.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> It&#8217;s always like when you are in States, you just need to sign a waiver before using any of the….</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Experiments, yeah.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> &#8230; excursion of ….</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Navigation block is getting some attention now that all the widget things is at least released in its second iteration and has quite a few changes there, be it from color options for the sub-menu to improved handling of the overlay to the inheritance of the placeholder for the menu item. Also made it into the release is a refractor of the navigation block rendering using allocation attribute.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The change is for global style. Sound very technical even for me.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> We talk about that a little bit on a higher level when we talk about what&#8217;s next for Gutenberg.&nbsp;</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p>In the changelog, we&#8217;re coming to the documentation section, and that definitely had quite some updates that are interesting for the developers that are working on extending Gutenberg.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I guess at least for the block API and for block editor API, this is something I worked on, it&#8217;s all the content that you would be familiar if you read Dev Notes for the same topic, but it&#8217;s brought to the documentation. I think the more interesting part, at least for myself, is the theme JSON changes. We have now examples and highlighted backward compatibility usage. That&#8217;s quite important I think to look at if you are experimenting with this theme JSON format.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> With that, of course came an update on the format with the WordPress 5.8 changes.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Also for the same topic, I think the biggest challenge now is that there is still an active development, so new features are added. In the documentation, it needs to be very clear what&#8217;s already in WordPress Core and what&#8217;s part of the Gutenberg plugin experience, so I think there is also an entry and a change that covers that.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s a good point. I think the last few years, there was quite some confusion. Especially when you have plugins and you need to gear it towards multiple versions of WordPress, who is on 5.7, who is on 5.6 to make that all work was, even if the new features come, you need to go back and say, not for you, not for you, not for you in your code. It&#8217;s not for WordPress 5.1 or 2 or 3 or 4, but it&#8217;s only for 5.6 and 7.</p>\n\n\n\n<h3><strong>Code Quality</strong></h3>\n\n\n\n<p>We&#8217;re coming to code quality changes, and it seems that there are quite a few that you could be talking about that changed.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I highlighted changes for the API fetch that we discussed in the last episode. There was some follow-up on that front. Now there is a user auto-completer component in the block editor that doesn&#8217;t use this API fetch directly by the abstraction built on top of that. The same applies to the latest post block. Those things are in motion and very quickly are changed in the WordPress.&nbsp;</p>\n\n\n\n<p>There are new components that were &#8230; those components were experimental: the gradient picker and the custom gradient picker. Those two components are now considered stable, so everyone is encouraged to try them out and to use in their products. The backward compatibility will be assured from now on.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> This is the keyword for me is gradients! I love gradients, yes, and I like that we have them in Gutenberg so much.&nbsp;</p>\n\n\n\n<h3><strong>Tools</strong></h3>\n\n\n\n<p>Then there were some additional tool changes, 16 of them for testing dependencies and workflows. Now, previously-skipped widget tests are now enabled.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There&#8217;s some back and forth. I highlighted those items that I consider interesting, that some tests were enabled, they&#8217;re disabled, enabled again. It&#8217;s very important for the projects to have a reliable verification from end-to-end tests, unit tests and all sorts of tests that you can come up with. It&#8217;s a very strong emphasis to have that always be something that you can look at and say, &#8220;It&#8217;s working. I can just merge the change,&#8221; because otherwise, if there&#8217;s so many contributors, it will be impossible to keep the pace on the tests.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, keep the pace or not. I have to go back and do a regression testing as well, which you do.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> There are also some new tests other than that. I encourage everyone, if they want to figure out how they could contribute with code, so finding a piece of UI interaction that isn&#8217;t covered through this test and writing end-to-end tests is a great experience in both to see how this automation works, how you can see the interactive mode and look how computer is just doing user interactions in your Chrome browser. That&#8217;s really nice experience and really rewarding when you make it go and to test passes and all the verifications are checked.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s instant gratification. What can be better than that? I have found that that&#8217;s my programming style is I need instant gratification. I can&#8217;t wait until everything is compiled and all that. That&#8217;s why HTML was so fabulous for me. I can see it right away.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> With CSS, it&#8217;s even better.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s even better? Yeah.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> You just open dev tools and just change something and you know that it works.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, and you can change it only for you, and you don&#8217;t have to even publish a code for it.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> The last item I had is just mostly for us when we are going to the changelog is that now those, as I said, some of the experiments that were moved to the stable feature, so that&#8217;s why we don&#8217;t see as many items in that list.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I think what also was on the list, but we skipped it, is that the changelog automation, when the plugin is released, there is now a process there to look at each automation process to look at each PR and classified at the different categories, and then put it into the block library, so when you read through the release notes, you can better identify what the change actually was about and have some of the changes clustered in one category. I really like that. There&#8217;s some great work to be done there.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think that we should see that in two weeks, when the new changelog is generated, because it was too late to use those changes for the release. I&#8217;m really looking forward to it because it will have a better grouping, and that will improve the reading experience.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That was then the Gutenberg 11.1. Go out and test it and try it and work with it. I don&#8217;t know how many of you use Gutenberg actually in production. I do on many sites. I have yet to have to return to a previous version, but I also know where the pitfalls are that I can work around and say, &#8220;No, that doesn&#8217;t work. Don&#8217;t do it,&#8221; to some of the code editors.&nbsp;</p>\n\n\n\n<h3><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>That gets us into what&#8217;s an active development and what&#8217;s discussed. Hector Prieto has skipped the What&#8217;s Next focus post that comes out every month for July, for beginning of July because of all the work that was to be done for WordPress 5.8, and everybody was focused on that. He published just also this week the new site editor status check for late July, so for one week, and then for the whole of August, which is the focus project. You had a quote that you found interesting.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Yeah. I reached out to Hector and asked him about the higher-level overview. The main idea is to turn a page after 5.8 from the classic FSA foundational work to a new iteration that focuses apart from remaining things like navigation, on design tools, patterns and all kinds of interactions that improve and ease the user experience as the editor complexity grows.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That means that for the site editing infrastructure, there were a few focuses. One is of course the template previewing, making it easier for people to see what they&#8217;re doing. Then the browse mode, that&#8217;s a new mode, I think. Then, mosaic view for theme template. You get cards from the theme template, so you can choose them and you hopefully also see &#8230; I saw some early mock-ups of that where you see some preview of how it looks, how each template looks, so you can select the right one.&nbsp;</p>\n\n\n\n<p>Then, restrict the block editing capabilities based on context. That&#8217;s certainly important when you have a block that&#8217;s used on a page or a block that&#8217;s used, for instance, in a block template or a widget setting, and also if it&#8217;s an inner block or an outer block or with a query loop block. I think that comes very much into fruition there.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I&#8217;m looking forward to see the browse mode because it essentially allows you to navigate with the links that are on the page, so you can just go from the whole screen and see how it looks like, go to the About page, change something there, go to the contact page, change something there, it will be very smooth experience once this is in action.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That sounds almost like a front-end editing, but in the editor. I&#8217;d like to see that, yes.&nbsp;</p>\n\n\n\n<h3><strong>Global Styles</strong></h3>\n\n\n\n<p>One other part is certainly the global styles. Global styles was always two parts. One was what then became the theme JSON feature where you have a central place for theme developers to have all the settings for a certain theme, and that&#8217;s in a configuration file, but the second part was for user to change global styles with a user interface in the sidebar of the site editor, and has been in experiment I think since last December or November already, but that is now make it ready for more users to test it and get it out of the experiments into the plugin and then make it ready for 5.9 hopefully that will come out in December.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Just to clarify, is it this feature that has its own sidebar presence in the site editor, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes. Yeah.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> That&#8217;s this section?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. That&#8217;s a global style.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski: </em>It probably builds on top of theme JSON, so that only shows the customizations you make to the theme.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Right. The theme could actually allow you to have multiple color palettes, but then, it gives you that interface to change it up and then react to it. I think it&#8217;s a big, big task to get this right and get it interesting for a user to actually pursue that, but also to not be all things to all people. That&#8217;s a balance to strike there, but yeah, that&#8217;s one of the focus items that Hector Prieto highlighted in his post. I&#8217;m just going to look on &#8230;.&nbsp;</p>\n\n\n\n<p>He has other things as well, one as the theme blocks that have more of the post aid, post excerpt, post feature, post content kind of blocks for the query block, and also the site header, site title and the header thing are already in there, but they of course need to be refined. Then, the query loop block will get some enhancement. Then, another focus is the navigation block and editor screen and site editing gradual adoption, which needs to be seen how can a theme move from a classic theme over a hybrid theme to be a universal theme or a block-based full-site editing theme only. All those interactions are to be discussed and worked on.&nbsp;</p>\n\n\n\n<p>There are even more. The whole post is I think about 3,000 words long, but it&#8217;s a milestone to look at that, okay, we know that and what&#8217;s coming up and we are not done yet. We are not there yet and there are quite a few things to be done.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think that&#8217;s so big because it more covers the scope of the WordPress 5.9 release, at least what&#8217;s in plans. Rather than something that you can realistically do in August, when people on the north of the globe spend time during summer vacation, so I don&#8217;t expect so much movement in that area, but it&#8217;s great to see the vision for the release, and everyone can just focus on their area of interest and drill down in it later throughout there and get involved in those parts.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s really a great way to learn more about the details of all those things that might come for 5.9 or even 6.0, because we will have something like what we had in April, where we go look at all the features or the team is going to look at all the features that, is it ready yet, is it ready yet, or do we punt it for 6.0?&nbsp;</p>\n\n\n\n<p>The feature lead, if such a thing is actually there, Robert Anderson talked about, has an overview issue on GitHub now with what&#8217;s next for the widget editor now that&#8217;s in Core, what are the things to be worked on. That&#8217;s definitely something to look through because it&#8217;s how to smooth out the rough edges, improve performance and stability, and improve extensibility for all the plugin developers out there that now want to extend the widget editor or widget sections.&nbsp;</p>\n\n\n\n<p>That&#8217;s a good overview issue and see what&#8217;s all worked on. Of course, we&#8217;ll share that all in the show notes. What I found was a little bit put on the ways, on the side was the gallery refractor for the gallery block that switches from a &#8230; to have nested image blocks in the gallery rather than create the images over and over, but we haven&#8217;t gone further with that.</p>\n\n\n\n<p>It hasn&#8217;t been merged with the Gutenberg plugin yet. It&#8217;s still out there, but I&#8217;m really excited about it and I have been excited since I started testing it because it has so much more potential and I&#8217;m really looking forward to that. I think I&#8217;m going to go back to that and see if I can assist in some more testing there.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think it&#8217;s mostly about the Core compatibility. That&#8217;s the only challenge that is making this process so difficult. That&#8217;s why it takes so long.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, I totally get it. I was not trying to be impatient. I know the last 10% normally take 80% of the time that it takes to build something like that. It would be such a rich experience for a content creator that it&#8217;s worth spending time on and getting it right, of course.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> I think everyone is aware that you could now use list view and use drag-and-drop to move your image to the gallery or move out of the gallery and reorder some of the images. There&#8217;s so much potential when you start using those concepts.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Just to apply the image styles, that you have a gallery of head shots that you can make round for a conference or just a little event or so that you have, it&#8217;s just a nice experience, rather than….</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Or maybe groups inside the gallery. You could create columns, groups, whatever. It&#8217;s so exciting to think about all the possibilities that it opens.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I like that creativity say, &#8220;When we can do that, can we do other things?&#8221; Yeah.&nbsp;</p>\n\n\n\n<p>That&#8217;s pretty much we&#8217;re on the end of the show. For all those that are on holiday and a vacation and are outside and away from the keyboard and still listening to it, we&#8217;re so happy you&#8217;re here. When you get back to the computer, you have so many great things to test out and work on. Do you have any last announcements or things that you weren&#8217;t able to get in before that, Grzegorz?</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> No, no. I think we covered everything.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Exactly, yeah. As always, the show notes will be published under GutenbergTimes.com/Podcast. This is Episode 48. If you have questions, suggestions or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> We would like also to hear about our show and whether you like it or not, so we are looking forward for all the reviews so we can improve what we cover in here. We are always happy to hear your feedback.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Good point. Thanks so much for taking that on. Thank you all for being here. Thank you, Greg, for spending time on this and working hard on this. It was a pleasure talking to you. Thanks everybody for this time. Goodbye.&nbsp;</p>\n\n\n\n<p><em>Grzegorz Ziolkowski:</em> Likewise, thank you very much, Birgit. See you in two weeks.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right. Bye.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Oct 2021 19:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Gutenberg Times: Go/NoGo WordPress 5.9, Pattern Palooza and Popover  – Weekend Edition 189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=19292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://gutenbergtimes.com/go-nogo-wordpress-5-9-pattern-palooza-and-popover-weekend-edition-189/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18038:\"<p>Howdy, </p>\n\n\n\n<p>It was a very busy week of meetings, news and live streams. The buzz around the next major WordPress version keeps everyone excited and alert. There is also hard to deal with FOMO*, as we can&#8217;t be at two or three places at the same time. And who has time to watch all the recordings? </p>\n\n\n\n<p>Well, next week won&#8217;t be any different: Monday, the <a href=\"https://pagebuildersummit.com/\">Page Builder Summit </a>will start with 35+ talks around freelance and agency business their tools. <a href=\"https://gutenbergtimes.com/feed/#pagebuilder\">Below is a list </a>of all Gutenberg related talks. </p>\n\n\n\n<p>The WordPress teams published quite a few posts around the WordPress 5.9 release. It&#8217;s not yet Field Guide time, though. </p>\n\n\n\n<p>Hope, y&#8217;all have a great weekend with reduced screen time. </p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n<p>PS: The recordings of the last two Live Q &amp; As are available on YouTube. The posts with resources and transcript are in the works. </p>\n\n\n\n<ul><li><a href=\"https://www.youtube.com/watch?v=eiIhJdFfamA&t=9s\">From Classic Themes to block-based Themes</a></li><li><a href=\"https://www.youtube.com/watch?v=-PZwfvtkQOM&t=10s\">How can we make building custom blocks easier?</a></li></ul>\n\n\n\n<p>PPS: In a very short video, <strong>Jamie Marsland</strong> shows us <a href=\"https://www.youtube.com/watch?v=wvM3kK6l2Y8\">Why WordPress Gutenberg is a threat to Elementor and Divi</a>. #shorts </p>\n\n\n\n<p class=\"has-small-font-size\">*Fear of Missing Out</p>\n\n\n\n<h2>Gutenberg and WordPress Development</h2>\n\n\n\n<p class=\"has-drop-cap\">In his post, <strong><a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\">WordPress 5.9 Feature Go/No-Go</a></strong>,  <strong><a href=\"https://twitter.com/priethor\">Hector Prieto</a></strong> published the summary of the meeting, the list of features, the recording, and a transcript. The recording is particularly interesting for Matias Ventura&#8217;s demo of the current state of the major features: </p>\n\n\n\n<ul><li>List View &#8211; Expand-collapse, Drag &amp; Drop</li><li>Auto-Anchors on Headings</li><li>Border support for blocks</li><li>Layout &#8211; Gap spacing, Flex &amp; Row,</li><li>Typography Tools across Blocks and styles </li><li>Full-site Editing as opt-in, beta preview. </li></ul>\n\n\n\n<p>Throughout the meeting, I heard the language shifting, in an attempt to simplify talking about the various features. </p>\n\n\n\n<ul><li>Now: <strong>Block Themes</strong> (instead of Block-based Themes)</li><li>Now: <strong>Editor</strong> (instead of Site Editor or Template Editor)</li><li>Now: <strong>Styles</strong> (instead of Global Styles) </li></ul>\n\n\n\n<p><strong>Sarah Gooding</strong> wrote about it in the WPTavern:<strong> <a href=\"https://wptavern.com/wordpress-5-9-go-no-go-update-all-proposed-features-are-moving-forward\">WordPress 5.9 Go/No-Go Update: All Proposed Features Are Moving Forward</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">The work on WordPress 5.9 is on track with <a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">The Preliminary Road 5.9</a>, Matias Ventura posted a couple month ago, except for the Navigation Screen, that did not get past the backwards compatibility issues. The Navigation Block as a major feature for site-building will be available for Block Themes in the new WordPress version. </p>\n\n\n\n<p>If you want to learn more about the status on the Navigation Screen and Block project, the team came together in a Hallway Hangout to discuss the priorities for the WordPress 5.9 release. <strong>Daniel Richards</strong> posted the <a href=\"https://make.wordpress.org/core/2021/10/15/summary-navigation-editor-and-block-hallway-hangout/\"><strong>Summary: Navigation Editor and Block hallway hangout</strong></a>, including the recording of the meeting. One meeting topic was Backwards compatibility with the current system for the Navigation screen. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">The Gutenberg developers also release a new version of the Gutenberg plugin. <strong>Gutenberg 11.7</strong></p>\n\n\n\n<p><strong>Adam Zielinski,</strong> release coordinator for this version, published the release notes: <a href=\"https://make.wordpress.org/core/2021/10/14/whats-new-in-gutenberg-11-7-october-13th/\"><strong>What’s new in Gutenberg 11.7 (October 13th)</strong></a></p>\n\n\n\n<p><strong>Justin Tadlock</strong> took it for a spin and reviewed it for the WPTavern: <a href=\"https://wptavern.com/gutenberg-11-7-iterates-on-global-styles-improves-adding-navigation-links-and-adds-column-spacing\"><strong>Gutenberg 11.7 Iterates on Global Styles, Improves Adding Navigation Links, and Adds Column Spacing</strong></a></p>\n\n\n\n<p><em>Only two more Gutenberg releases (11.8 + 11.9) until Feature Freeze on November 9th, 2021. </em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\"><strong><a href=\"https://twitter.com/kellychoffman\">Kelly Hoffman</a></strong> and <strong><a href=\"https://twitter.com/jameskoster\">James Koster</a></strong>  from the WordPress design team shared their ideas for <strong><a href=\"https://make.wordpress.org/design/2021/10/15/site-editing-ia-concepts-how-to-surface-and-access-new-features/\">Site editing IA concepts: How to surface and access new features</a></strong>. (IA = Information Architecture) <br />They wrote: &#8220;Do we want to begin down this path towards a single page app-like experience, or would it be better to keep things separate for now? It’s time to explore and design the IA (information architecture) so that we can begin to paint a picture of how we might merge this exciting functionality in to core.&#8221;</p>\n\n\n\n<p>You can follow along the explorations via the <em>prototype links</em> on Figma. You are offered two ideas: All in one means one editor screen, reached via the “Appearance” Menu, and you edit templates, post, and pages, template parts or change the styles all on this screen that adjust for the various context.  The other idea is to keep post and page editing and site editing features separate, but surface some template parts to be reachable via the post/page editor. </p>\n\n\n\n<img />Example screen: <strong><a href=\"https://make.wordpress.org/design/2021/10/15/site-editing-ia-concepts-how-to-surface-and-access-new-features/\">Site editing IA concepts: How to surface and access new features</a></strong>.\n\n\n\n<p>I can see the all-in-one idea working, as it would hide the rest of the WPAdmin for the common content creation tasks, as that&#8217;s where many end users get lost or bombarded with plugins or theme upsell and update notices. I also enjoy the alternative design to the &#8220;Welcome Guide.&#8221; </p>\n\n\n\n<p>This is not a quick decision to make. As the second one feels familiar, and the first one very new, I suspect my decision might be skewed by the &#8220;known&#8221; versus the &#8220;new&#8221;, instead which of the avenues makes the best sense for the End-User. </p>\n\n\n\n<p><em>If you have an opinion formed, leave a comment on the post! </em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>With WordPress 5.9 only two months away and Go-NoGo decisions made,  <strong>Anne McCarthy</strong> started a second round of collecting questions you might have about Full-site editing. <a href=\"https://make.wordpress.org/core/2021/10/13/submit-full-site-editing-questions-by-oct-27th/\"><strong>Submit Full Site Editing questions by Oct 27th</strong></a>. McCarthy asked &#8220;As it’s possible, please focus questions specifically around WordPress 5.9 as those will be the highest impact to address and not on larger strategic decisions.&#8221;&nbsp;</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  </p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Creating and using Block Themes </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/mjsdiaz1\">Marcy Diaz</a></strong> recounted in <a href=\"https://amethystwebsitedesign.com/custom-wordpress-full-site-editing-theme-now-live/\"><strong>&#8220;Custom WordPress Full Site Editing Theme Now Live&#8221;</strong></a> who she converted her site from a classic theme to a Block Theme. Along the way, Diaz shared her experiences interacting with tools and interfaces of theme.json or the Styles sidebar in the editor for templates. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It started as an experiment, but it came together easier than I expected, and so it’s live on this site now.</p><cite>Marcy Diaz</cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In <a href=\"https://wptavern.com/proposal-for-themes-to-highlight-block-patterns-from-the-directory\"><strong>Proposal for Themes To Highlight Block Patterns From the Directory</strong></a>, Justin Tadlock explores Kjell Reigstad&#8217;s idea:  Designers could not only provide patterns with their themes, but also highlight block patterns from the WordPress.org Pattern Directory to their users. It would reduce the bundle size of the themes, and exposes site builders to the broader range of Patterns in the directory. <em>What do you think about this?</em></p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total\" /></p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Speaking of WordPress Block Patterns, <strong>Tammie Lister</strong> added  14 more inspiring block patterns to her <a href=\"http://patternspiration.com/\"><strong>Patternspiration</strong></a> site. I love the alignment of text and photos in <a href=\"http://patternspiration.com/2021/10/06/006/\">006</a> and the <a href=\"http://patternspiration.com/2021/10/02/002/\">Chapter list of 002</a>. </p>\n\n\n\n<img /><a href=\"http://patternspiration.com/2021/10/02/002/\">Tammie Lister, Patternspiration 002</a>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Many theme developers are taking their first steps on creating a block theme. <strong><a href=\"https://twitter.com/carolinapoena\">Carolina Nymark</a></strong> has a few tips on <strong><a href=\"https://fullsiteediting.com/lessons/troubleshooting-block-themes/\">Troubleshooting block themes</a></strong>. Nymark has been working on block themes for little over a year and has tackle pretty much all problems, you could encounter at the beginning: From syntax errors in theme.json to Template issues. </p>\n\n\n\n<h2>Building Blocks for WordPress</h2>\n\n\n\n<p>On his Thursday&#8217;s on Twitch live coding session, <strong><a href=\"https://twitter.com/ryanwelcher\">Ryan Welcher</a></strong> showed us <a href=\"https://www.twitch.tv/videos/1176495340\"><strong>how to create an accordion block that uses the InnerBlock component</strong></a>.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\"><strong>Herb Miller</strong>, developer and early adopter of block development, did a deep dive into <a href=\"https://herbmiller.me/internationalizing-and-localizing-block-based-plugins/\"><strong>Internationalizing and localizing block-based plugins</strong></a>. Miller first explains the difference between internationalization, translation and localizing, lists the tools, you&#8217;d be using and explains with code examples how to make your JavaScript and PHP code &#8216;translatable&#8217;. An excellent tutorial, that helps you offer your products to a broader audience and empowers translation teams to make your plugin available in many other languages. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p id=\"4-a-href-https-us-02-web-zoom-us-webinar-register-1016333846354-wn-v-e-xlr-fa-rcab-gz-78-jgj-8-ca-converting-classic-widgets-to-blocks-a\"><a href=\"https://us02web.zoom.us/webinar/register/1016333846354/WN_v-EXlrFaRcabGz78jgj8CA\">Join us on October 28th at 12 pm EDT / 16:00 UTC</a> <br /><strong>Gutenberg Times Live Q &amp; A: <a href=\"https://us02web.zoom.us/webinar/register/1016333846354/WN_v-EXlrFaRcabGz78jgj8CA\">Converting classic widgets to blocks</a> </strong><br />Learn from the BuddyPress team members, <strong>Mathieu Viet</strong>, <strong>David Cavins</strong>, <strong>Varun Dubey</strong>.</p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/1016333846354/WN_v-EXlrFaRcabGz78jgj8CA\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\"><strong>David Gwyer </strong>published another tutorial on his new site <em>InnerBlocks</em>: <a href=\"https://innerblocks.com/how-to-use-a-popover-component/\"><strong>How to Use a Popover Component</strong></a>. He starts off with using the official WordPress scaffolding tool for blocks <code>create-block</code> and then walks the process to add the Popover Component to our new block and includes handling of state to manage visibility of the popover. It&#8217;s a great real life example of block development. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>WordPress Events</h2>\n\n\n\n<p><strong>October 18 &#8211; 22, 2021</strong><br /><strong><a href=\"https://pagebuildersummit.com/\">Page Builder Summit</a></strong> Take a look at the <a href=\"https://pagebuildersummit.com/schedule/\"><strong>schedule</strong></a>!</p>\n\n\n\n<p>Here is the list of Gutenberg / Block-editor presentations </p>\n\n\n\n<ul><li><strong>Forging the Future with Full Site Editing</strong> with Anne McCarthy (10/18 &#8211; 9am EDT)</li><li><strong>The Future of Building WordPress Websites </strong>with Brian Gardner (10/18 &#8211; 12pm EDT)</li><li><strong>What does Full Site Editing Mean for Page Builders?</strong> with Joe Casabona (10/19/ 9am EDT)</li><li><strong>Customizing WordPress Block Editor for Client Projects </strong>with Birgit Pauli-Haack (10/19/ &#8211; 10 am EDT)</li><li><strong>Mastering modern WordPress with Full-site Editing &amp; Custom Blocks</strong> with Rob Stinson (10/20/ &#8211; 5am EDT)</li><li><strong>How to Build Any Page Layout Using Kadence Blocks</strong> with Jake Pfohl (10/20/ &#8211; 12pm EDT)</li><li><strong>Building a Custom Blog Archive with Blocks</strong> with Mike Oliver (10/21/ 11am EDT)</li><li><strong>RIP Page Builders</strong> with Chris Lubkert (10/19 &#8211; 1pm EDT)</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>October 28, 2021 &#8211; 1 pm EDT /  17:00 UTC </strong><br /><strong><a href=\"https://bit.ly/3p6b0ir\">Post Status: Headless WordPress Webinar </a></strong></p>\n\n\n\n<p>With Experts from WebDevStudios</p>\n\n\n\n<ul><li>Brad Williams, CEO and Co-Founder</li><li>Lisa Sabin-Wilson, COO and Co-Founder</li><li>Greg Rickaby, Director of Engineering</li><li>Amor Kumar, Frontend Engineer</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>November 4th, 2021</strong>,  <br /><a href=\"https://events.wpengine.com/event/965784e1-7d9f-4ca4-b5c7-3186a468e125/websitePage:5bbe0ca6-fd0c-4e77-b99b-de21baff9062\"><strong>WPEngine Summit 2021</strong></a> (EMEA)<br />starts at 10 am UTC / 6am EDT</p>\n\n\n\n<p>With many fantastic speakers, among them CEO Heather Brunner, Chris Weigman, Rob Stinson, Hashim Warren, Grace&nbsp;Erixon, and Brian Gardner</p>\n\n\n\n<ul><li><a href=\"https://events.wpengine.com/event/965784e1-7d9f-4ca4-b5c7-3186a468e125/websitePage:645d57e4-75eb-4769-b2c0-f201a0bfc6ce\">Schedule</a></li><li><a href=\"https://events.wpengine.com/event/965784e1-7d9f-4ca4-b5c7-3186a468e125/regProcessStep1\">Tickets</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">On the<a href=\"https://wpcalendar.io/online/\">&nbsp;<strong>Calendar for WordPress Online Events</strong>&nbsp;</a>site, you can browse a list of the upcoming WordPress Events, around the world, including WordCamps,  WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n\n<p><a href=\"https://www.flickr.com/photos/13998657@N02/18526571462\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Building blocks&#8221;</a>&nbsp;by&nbsp;<a href=\"https://www.flickr.com/photos/13998657@N02\" target=\"_blank\" rel=\"noreferrer noopener\">jgbarah</a>&nbsp;is licensed under&nbsp;<a target=\"_blank\" rel=\"noreferrer noopener\">CC BY-SA 2.0</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Oct 2021 19:44:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: Ask the Bartender: What Happens to the Customizer When a Block Theme Is Active?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124368\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/ask-the-bartender-what-happens-to-the-customizer-when-a-block-theme-is-active?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-what-happens-to-the-customizer-when-a-block-theme-is-active\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7837:\"<blockquote class=\"wp-block-quote\"><p>Something on my radar right now is third-party plugins that have settings in the Customizer. What I gather of friends who are the devs working on Customizer and front-end stuff within a few plugin companies, global styles and block styles are not yet on their radar. So what happens if someone installs Twenty Twenty-Two or another block-based theme? The left admin menu for Customizer isn&rsquo;t there. The janky way to get there is via Appearance &gt; Themes &gt; Customizer. But the expectation is that third-party plugins and themes need to move settings over. In fact, this seems more like they need to duplicate settings in both places for a while.</p><cite>Anonymous</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">For those out of the loop, let me provide a quick refresher on this topic. When WordPress 5.9 lands, <a href=\"https://wptavern.com/wordpress-5-9-go-no-go-update-all-proposed-features-are-moving-forward\">we expect it to ship</a> with the new site editor and global styles interface. However, most users will not see this screen unless they are running a block theme.</p>\n\n\n\n<p>Given that the upcoming <a href=\"https://wptavern.com/first-look-at-wordpress-upcoming-twenty-twenty-two-default-theme-the-most-flexible-default-theme-ever-created-for-wordpress\">Twenty Twenty-Two</a> is also shipping with WordPress 5.9 and judging the popularity of past default themes, we can expect many thousands of users will be transported into this whole new world. For some, this might be as shocking as the launch of the block editor in 5.0.</p>\n\n\n\n<p>When a block theme is active, links to access the old and familiar customizer will disappear from the user interface. The widgets and nav menu screens won&rsquo;t be around either. However, they will still be accessible if you know the URL for the screens.</p>\n\n\n\n<p>We first learned this would be the case last year as part of the <a href=\"https://wptavern.com/gutenberg-9-3-provides-indicator-of-where-full-site-editing-is-going-a-future-without-widgets-and-customizer-screens\">Gutenberg 9.3 release</a>. There is also an <a href=\"https://github.com/WordPress/gutenberg/issues/30496\">open issue</a> to ensure that the site editor has feature parity with some core WordPress settings.</p>\n\n\n\n<p>It is OK that these features are being phased out for block theme users. They were all early, disparate attempts at creating individual pieces of what the site editor will allow. WordPress is bringing all of these concepts together into a more cohesive user experience. It is a standard that contributors can continually iterate on. It will not be perfect out of the gate, but this first version in the core platform should fuel the feedback needed to improve it as more users start installing block themes.</p>\n\n\n\n<p>The problem presented here has more to do with the plugin market. The customizer was initially built as a theme-settings tool and has primarily been used for that purpose. But, many plugins have tied various settings to it over its nine-year history. A search for <a href=\"https://wpdirectory.net/search/01FJ2TGB2EZ4N867KXEA6TS6CJ\"><code>wp_customize</code></a> in the plugin directory pulls up over 1,400 results. The <a href=\"https://wpdirectory.net/search/01FJ34ZYJZTJ5MGNW4J82FBV4Z\"><code>customize_register</code></a> hook shows over 1,900. These are not necessarily exact matches for how many plugins actually add panels, sections, settings, or controls. However, it is an indicator that many are relying on it to present options to end-users.</p>\n\n\n\n<p>So, we are back to the question at hand. <em>What happens when a user installs a block theme, such as the upcoming Twenty Twenty-Two, while using a plugin that relies on the customizer?</em></p>\n\n\n\n<p>It depends.</p>\n\n\n\n<p>Some plugins like WooCommerce have already conveniently placed a direct link to their customizer panel/section in the admin menu. This will be a non-issue for their users. However, for everyone else, the customizer will seem to disappear entirely.</p>\n\n\n\n<img />WooCommerce customizer options accessible with block theme.\n\n\n\n<p>In a matter of weeks after 5.9, depending on how quick the adoption of Twenty Twenty-Two occurs in particular, we could be looking at thousands of confused users. Of course, all of this could change in the time leading up to the release. However, this is a conversation that needs to happen now.</p>\n\n\n\n<p>&ldquo;The concern here is for end-users,&rdquo; said the anonymous questioner. &ldquo;They will be looking at knowledgebase articles, directions in plugin settings, and more indicating where to look for the settings.&rdquo;</p>\n\n\n\n<p>At least at the moment, the onus is on plugin authors to address this for their own users. However, there are multiple pathways they may want to go down.</p>\n\n\n\n<p>The most straightforward method is to follow the lead of WooCommerce. The plugin checks the <code>gutenberg_is_fse_theme()</code> conditional (note that this <a href=\"https://github.com/WordPress/gutenberg/pull/32950\">function name may change</a>). If it returns <code>true</code>, the plugin adds a link directly to its customizer panel.</p>\n\n\n\n<p>Linking to a customizer panel, section, or control is simple. Plugin authors can find the URLs in the <a href=\"https://developer.wordpress.org/themes/customize-api/the-customizer-javascript-api/#focusing-ui-objects\">developer handbook</a>. They can also just <a href=\"https://github.com/woocommerce/woocommerce/blob/2cf30b0190542ed097d0f2e9a607db10561d43e8/includes/customizer/class-wc-shop-customizer.php#L274-L289\">copy the technique</a> the WooCommerce team employed.</p>\n\n\n\n<p>This is a quick method to ensure users do not lose access to their options if plugin authors cannot make changes before WordPress 5.9 lands.</p>\n\n\n\n<p>In the long term, it is not the ideal solution. The customizer will be around for a long while, but plugin authors will need to deal with two sets of users: those running both block and classic themes.</p>\n\n\n\n<p>Because each plugin is different, solutions will need to be different. Many can simply use the <a href=\"https://developer.wordpress.org/plugins/settings/settings-api/\">Settings API</a> to build a custom options screen. If that is a workable solution, it will not matter what theme the user is running.</p>\n\n\n\n<p>However, the reality might be maintaining two systems for both sets of users. One that integrates with the customizer and another that pulls options into the site editor. If the plugin has design-related features, block theme users will expect to see settings in the new interface.</p>\n\n\n\n<p>On the theming side of things, there should be fewer problems. A block theme does nothing with the customizer anyway. One outstanding issue would be converting starter content over, and there is an <a href=\"https://github.com/WordPress/gutenberg/issues/35680\">open ticket</a> to bring that to Full Site Editing.</p>\n\n\n\n<p>More than anything, keeping open lines of communication with users will help ease the transition. Some of that should come from core WordPress. However, many users will need to hear it from their plugin and theme developers. This might be blog posts, knowledgebase or tutorial updates, and keeping up with support.</p>\n\n\n\n<p>Then, there is the final solution, one that WordPress itself could implement. It is also the path of least resistance.</p>\n\n\n\n<p>WordPress should automatically detect filters or actions on customizer-related hooks. This should trigger a &ldquo;customize supports&rdquo; flag and maintain the admin menu and toolbar links to the customizer screen. This would give developers some time to catch up without confusing users in the process. There might be a few false flags or missed integrations, but it should be able to effectively catch the majority of use cases.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Oct 2021 01:02:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WordPress 5.9 Go/No-Go Update: All Proposed Features Are Moving Forward\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124349\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/wordpress-5-9-go-no-go-update-all-proposed-features-are-moving-forward?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-9-go-no-go-update-all-proposed-features-are-moving-forward\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2859:\"<p>The go/no-go deadline for deciding on features for WordPress 5.9 was set for October 12 but the conversation was pushed back two days. Today, the core leadership for this release <a href=\"https://make.wordpress.org/core/2021/10/15/wordpress-5-9-feature-go-no-go-october-14-2021/\">announced</a> that everything in the <a href=\"https://wptavern.com/wordpress-5-9-proposed-scope-major-push-towards-full-site-editing-plus-a-new-default-theme\">previously-proposed scope for 5.9</a> will be moving forward.</p>\n\n\n\n<p>Users can expect block themes, template and template part editing flows, the new default Twenty-Twenty Two block theme, the Styles interface, design tools, the Navigation Block, all manner of UI improvements, and pattern insertion directly from the Pattern Directory. H&eacute;ctor Prieto, who is assisting with technical project management on the release, emphasized that many of these features are still in progress:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>To note, not all of the above are currently ready, but there is some level of confidence that they can be by the time of 5.9.</p></blockquote>\n\n\n\n<p>A new <a href=\"https://github.com/WordPress/gutenberg/projects/62\">WordPress 5.9 Must-Haves</a> project board on GitHub shows a broad overview of the issues contributors are focusing on to get the release ready.</p>\n\n\n\n<p>Prieto also published an exhaustive transcript of the meeting. There were no strong objections on specific features moving forward but there seemed to be a general acknowledgment that some features are still in a beta state. Those present at the meeting agreed that some kind of beta label might be advantageous where users could be directed to the Gutenberg plugin for faster updates to features that are still not fully polished. </p>\n\n\n\n<p>One particularly challenging feature has been navigation. &ldquo;I think from my perspective, the thing I was a bit worried about was the&nbsp;navigation menu&nbsp;flows, which I think we did a lot of progress over the last few weeks,&rdquo; Gutenberg lead engineer Mat&iacute;as Ventura said. &ldquo;And I think we need to set some good boundaries there.</p>\n\n\n\n<p>&ldquo;There has been a lot of work in also supporting sort of mega menus where you have in your sub-menus, you have images and paragraph any sort of block, which is cool. But there&rsquo;s also like the 80% of cases where you just have a few links, and we need to ensure that that experience is as best as we can make it. I think we&rsquo;re in a better place. And I think we&rsquo;ll get there.&rdquo;</p>\n\n\n\n<p>Beta 1 is expected November 16, and the official release is <a href=\"https://make.wordpress.org/core/5-9/\">scheduled</a> for December 14. If you want to see an early demo of WordPress 5.9, check out the recording of the meeting below:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Oct 2021 21:28:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Post Status: Post Status Excerpt (No. 28) — A WordPress Core Performance Team?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=87933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://poststatus.com/excerpt/28/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4602:\"<h2>&#8220;If plugin authors were better educated maybe they would make some different choices.&#8221;</h2>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, Cory and David talk about WordPress\'s reputation relative to its performance. This discussion unfolds in light of <a href=\"https://make.wordpress.org/core/2021/10/12/proposal-for-a-performance-team/\">a new proposal for a Performance Team for WordPress core</a>. What should happen to improve the WordPress experience (for both the user and for search engines) on the front-end and the admin experience as well? Education? Notifications to the user? </p>\n\n\n\n<p><strong>Also covered in this episode: </strong>We are formally announcing the existence of <a href=\"https://poststatus.com/\">the new Post Status homepage</a>, which is still a work in progress. We\'re also encouraging listeners to check out the &#8220;<a href=\"https://poststatus.com/make-wordpress/\">Week at WordPress.org</a>&#8221; (get the feed <a href=\"https://poststatus.com/make-wordpress/feed/\">here</a>), and <a href=\"https://poststatus.com/submit-2021-black-friday-cyber-monday-deals/\">submit your Black Friday / Cyber Monday deals</a> to us at Post Status.</p>\n\n\n\n\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will brief you on important WordPress news — in about 15 minutes or less! Learn what\'s new in WordPress in a flash. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and don’t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2021/10/12/proposal-for-a-performance-team/\">Proposal for a Performance team</a></li><li><a href=\"https://poststatus.com/announcements/10-28-the-legend-of-the-headless-website-post-status-live/\">The Legend of the Headless Website — Post Status Live with Brad Williams, Lisa Sabin-Wilson, Greg Rickaby, and Amor Kumar</a></li><li><a target=\"_blank\" href=\"https://poststatus.com/this-week-in-wporg-october-4-2021-2/\" rel=\"noreferrer noopener\">This Week at WordPress.org (October 11, 2021)</a></li><li><a href=\"https://poststatus.com/submit-2021-black-friday-cyber-monday-deals/\">Share Black Friday / Cyber Monday Deals With Post Status</a></li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset (Twitter)</a></li><li><a href=\"https://twitter.com/corymiller303\" target=\"_blank\" rel=\"noreferrer noopener\">Cory Miller (Twitter)</a></li><li><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status (Twitter)</a></li></ul>\n\n\n\n<h3><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/ithemes\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">Wordfence</a></h3>\n\n\n\n<p>Who can afford downtime, a black mark on their brand’s reputation, or the SEO impact of getting hacked? That’s why so many WordPress sites rely on the real-time protection provided by Wordfence Premium. Now, Wordfence Central offers Premium subscribers a powerful and efficient dashboard to manage security for all their sites from one central location. Try Wordfence today.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Oct 2021 15:50:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: WP Fastest Cache Patches Authenticated SQL Injection and Stored XSS Via CSRF Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"https://wptavern.com/wp-fastest-cache-patches-authenticated-sql-injection-and-stored-xss-via-csrf-vulnerabilities?utm_source=rss&utm_medium=rss&utm_campaign=wp-fastest-cache-patches-authenticated-sql-injection-and-stored-xss-via-csrf-vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1586:\"<p>The Jetpack Scan team has <a href=\"https://jetpack.com/2021/10/14/multiple-vulnerabilities-in-wp-fastest-cache-plugin/\">published</a> a summary of two issues recently discovered in the <a href=\"https://wordpress.org/plugins/wp-fastest-cache/\">WP Fastest Cache</a> plugin &ndash; an Authenticated SQL Injection vulnerability and a Stored XSS Via&nbsp;CSRF vulnerability. </p>\n\n\n\n<p>&ldquo;If exploited, the SQL Injection bug could grant attackers access to privileged information from the affected site&rsquo;s database (e.g., usernames and hashed passwords),&rdquo; Automattic security research engineer Marc Montpas said. This particular vulnerability can only be exploited on sites where the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a>&nbsp;plugin is both installed and activated.</p>\n\n\n\n<p>&ldquo;Successfully exploiting the CSRF and Stored XSS vulnerability could enable bad actors to perform any action the logged-in administrator they targeted is allowed to do on the targeted site,&rdquo; Montpas said. He also found that attackers could &ldquo;abuse some of these options to store rogue Javascript on the affected website.&rdquo;</p>\n\n\n\n<p>WP Fastest Cache is active on more than 1 million WordPress sites, and the plugin also  reports 58,322 paid users. Emre Vona, the plugin&rsquo;s author, patched the vulnerabilities in version 0.9.5, released this week. Jetpack recommends users <a href=\"https://wordpress.org/plugins/wp-fastest-cache/\">update</a> as soon as possible, as both vulnerabilities have a high technical impact if exploited.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Oct 2021 02:14:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: Gutenberg 11.7 Iterates on Global Styles, Improves Adding Navigation Links, and Adds Column Spacing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124298\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:259:\"https://wptavern.com/gutenberg-11-7-iterates-on-global-styles-improves-adding-navigation-links-and-adds-column-spacing?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-11-7-iterates-on-global-styles-improves-adding-navigation-links-and-adds-column-spacing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7573:\"<p class=\"has-drop-cap\">Released yesterday, <a href=\"https://make.wordpress.org/core/2021/10/14/whats-new-in-gutenberg-11-7-october-13th/\">Gutenberg 11.7</a> is one of the more exciting releases we have had in a while. The Global Styles system iterations continue to impress. The lighter nav experience makes adding links easier, and a spacing control for the Columns block delivered one of my oldest wish list items.</p>\n\n\n\n<p>The Site Logo block <a href=\"https://github.com/WordPress/gutenberg/pull/35344\">supports duotone filters</a>, bringing it up to par with other image-related blocks. Plus, theme authors can <a href=\"https://github.com/WordPress/gutenberg/pull/34667\">set the default filter</a> via their <code>theme.json</code> files.</p>\n\n\n\n<p>There are several other changes to love, such as the refreshed <a href=\"https://github.com/WordPress/gutenberg/pull/34712\">gradient picker design</a> and typography controls for <a href=\"https://github.com/WordPress/gutenberg/pull/35324\">post navigation blocks</a>. The block alignment control in the toolbar now also displays a <a href=\"https://github.com/WordPress/gutenberg/pull/34710\">&ldquo;None&rdquo; option</a>. This should make it easier for users to revert from a previous choice.</p>\n\n\n\n<h2>Lighter Navigation Experience</h2>\n\n\n\n<img />&ldquo;Add nav item&rdquo; feature brings up search.\n\n\n\n<p class=\"has-drop-cap\">Building nav menus has consistently been one of the frustrating experiences within the block system. Iterative improvements have made it better, but the actual process of adding links has been a painful one, at least until Gutenberg 11.7 rolled out yesterday.</p>\n\n\n\n<p>In previous iterations of the block, users had to go through a two-step process for adding any menu item. This was an issue I called out in <a href=\"https://wptavern.com/fse-outreach-round-9-building-a-higher-ed-header\">Round #9 of the FSE Outreach Program</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This stage of testing calls for adding multiple page links as both top-level and sub-menu items. When clicking the + button to add a link, my first instinct is to search for the page itself. However, the available field is a block search rather than a page search.</p></blockquote>\n\n\n\n<p>In the latest version of the plugin, clicking the <code>+</code> icon allows users to directly search for or type a URL. There is no need to figure out which block (e.g., Page, Post, Custom, etc.) to insert first. This change is part of an ongoing effort to create a <a href=\"https://github.com/WordPress/gutenberg/issues/34041\">lighter navigation experience</a>.</p>\n\n\n\n<p>While the link-adding experience was much better, I could not initially figure out how to add a simple homepage link without typing the full URL. Typing &ldquo;home,&rdquo; &ldquo;index,&rdquo; or a simple &ldquo;/&rdquo; character all failed.</p>\n\n\n\n<p>After realizing that the previous search did not work, I tried other known site pages. Posts, pages, categories, and tags all worked without issue. However, I could not pull up author/user archive URLs through the search field.</p>\n\n\n\n<p>There is one place to add a homepage link, and that is via transforming the menu item to a Home Link block by clicking on its icon in the toolbar. Other blocks are also available for this transformation process, such as Social Icons, Site Logo, and more.</p>\n\n\n\n<img />Transforming a link to a &ldquo;Home Link&rdquo; block.\n\n\n\n<p>On the whole, this is a much-needed improvement to the Navigation block&rsquo;s user experience. It likely comes closer to hitting the 80/20 rule when deciding how a feature should be implemented.</p>\n\n\n\n<h2>Create New Pages From the Link Inserter</h2>\n\n\n\n<img />Creating a new page from the link popover.\n\n\n\n<p class=\"has-drop-cap\">The user experience for adding links has been one of the highlights of the block editor this year. In June, <a href=\"https://wptavern.com/gutenberg-10-9-renames-the-query-block-adds-collapsible-list-view-items-and-rolls-out-rich-url-previews\">Gutenberg 10.9</a> introduced rich URL previews, which landed in WordPress 5.8. In the latest release of the plugin, developers have kicked it up a notch.</p>\n\n\n\n<p>Users can now directly <a href=\"https://github.com/WordPress/gutenberg/pull/35083\">create new pages when adding links</a>. Previously, users could only achieve this feat while adding items inside of the Navigation block. Now, it is available for links added anywhere.</p>\n\n\n\n<h2>Mind the Gap</h2>\n\n\n\n<img />Custom spacing between columns.\n\n\n\n<p class=\"has-drop-cap\">Users can now entirely control the gap between columns via the new <a href=\"https://github.com/WordPress/gutenberg/pull/34630\">Block Spacing option</a>. I knew it was coming &mdash; eventually. That it took three years since the release of the block editor for it to actually happen has been painful. I was still a full-time theme and plugin developer when I added this to my wish list. Granted, CSS flexbox support for <code>gap</code> was not widespread then, but we could have still managed with old-fashioned margins in the meantime.</p>\n\n\n\n<p>I am just happy that the long-awaited feature has finally landed. Now, I can begin phasing out the custom block styles I was using to replicate it.</p>\n\n\n\n<p>The feature works on top of the block gap feature that was first shipped with <a href=\"https://wptavern.com/gutenberg-11-4-overhauls-galleries-adds-axial-padding-for-buttons-and-lays-groundwork-for-global-spacing\">Gutenberg 11.4</a>. Theme authors may need to make adjustments if they have written custom code for controlling the spacing between columns.</p>\n\n\n\n<h2>Global Styles and Color Palettes</h2>\n\n\n\n<p class=\"has-drop-cap\">There is a push to improve the upcoming Global Styles feature, which <a href=\"https://wptavern.com/wordpress-5-9-proposed-scope-major-push-towards-full-site-editing-plus-a-new-default-theme\">could land in WordPress 5.9</a> later this year. Gutenberg contributors have made massive strides in improving the experience, building off its overhauled navigation in <a href=\"https://wptavern.com/gutenberg-11-6-improves-the-global-styles-ui-adds-child-theme-support\">version 11.6</a> of the plugin.</p>\n\n\n\n<p>The most notable interface change in this release is the new <a href=\"https://github.com/WordPress/gutenberg/pull/35109\">Color Palette section</a>.</p>\n\n\n\n<img />Colors panel with the Palette section at the top.\n\n\n\n<p>Instead of dropping the palette below the color options, it is now front and center. This is a feature that will ultimately empower users to customize their sites. The decision to focus on this part of the UI is welcome.</p>\n\n\n\n<p>After opening the palette section, users can edit the theme-defined colors or click the <code>+</code> icon to create new ones. These colors will all show up as options in the block and site editors.</p>\n\n\n\n<img />Color palette editor in the site editor.\n\n\n\n<p>Users should also see the Layout section at the root level of the Global Styles sidebar. They can now <a href=\"https://github.com/WordPress/gutenberg/pull/35241\">adjust the padding</a> for the overall site.</p>\n\n\n\n<p>I am still running into an error when trying to adjust the typography at the root level. This was an issue I first noticed with Gutenberg 11.6.</p>\n\n\n\n<p>I would like the Blocks section of the Global Styles panel to show the icons for individual blocks. With dozens of blocks, it is hard to scan through the list.</p>\n\n\n\n<img />Individual block styles list.\n\n\n\n<p>Another improvement, particularly if we forego icons, would be to alphabetize the list.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Oct 2021 20:52:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Yoast and Google-Sponsored Core Contributors Propose New WordPress Performance Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124218\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"https://wptavern.com/yoast-and-google-sponsored-core-contributors-propose-new-wordpress-performance-team?utm_source=rss&utm_medium=rss&utm_campaign=yoast-and-google-sponsored-core-contributors-propose-new-wordpress-performance-team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7043:\"<p>Yoast and Google-sponsored WordPress core contributors are <a href=\"https://make.wordpress.org/core/2021/10/12/proposal-for-a-performance-team/\">proposing</a> the project add a Performance team to improve core performance as measured by <a href=\"https://web.dev/vitals/\">Google&rsquo;s Web Vitals</a> metrics. </p>\n\n\n\n<p>&ldquo;Users expect and prefer fast experiences (consciously or otherwise),&rdquo; Yoast-sponsored full-time core contributor Ari Stathopoulos said. &ldquo;Research shows that fast websites can provide a better user experience, increase engagement, benefit SEO, increase conversion, and be more economically and ecologically friendly.&rdquo;</p>\n\n\n\n<p>There is no doubt that users expect and can benefit from improved performance, but there are a number of variables at play in any given WordPress site. Looking purely at core performance, Stathopoulos said WordPress is not holding up to the competition.</p>\n\n\n\n<p>&ldquo;Compared to other platforms (e.g., Wix, Shopify, Squarespace), WordPress is falling behind,&rdquo; he said. &ldquo;Other platforms are on average faster &ndash; and becoming increasingly faster &ndash; than WordPress websites (see&nbsp;<a rel=\"noreferrer noopener\" href=\"https://datastudio.google.com/u/0/reporting/55bc8fad-44c2-4280-aa0b-5f3f0cd3d2be/page/M6ZPC?params=%7B%22df44%22:%22include%25EE%2580%25800%25EE%2580%2580IN%25EE%2580%2580WordPress%25EE%2580%2580WooCommerce%25EE%2580%2580Shopify%25EE%2580%2580Wix%25EE%2580%2580Squarespace%25EE%2580%2580Duda%22%7D\" target=\"_blank\">The HTTP Archive&rsquo;s Core Web Vitals report</a>), and are actively investing in (and marketing)&nbsp;core&nbsp;performance-as-a-feature [<a href=\"https://twitter.com/igrigorik/status/1432400252305244162\">1</a>,&nbsp;<a href=\"https://support.wix.com/en/article/understanding-your-site-speed-dashboard\">2</a>].&rdquo;</p>\n\n\n\n<p>The HTTP Archive, which&nbsp;provides a common data set for those conducting web performance research, found that only 21.5% of sites assessed have good Core Web Vitals scores as of September 2021. While that percentage has been increasing over time, competitors that are already outperforming WordPress sites are also rapidly improving their scores. Stathopoulos described it as a &ldquo;widening gap&rdquo; between WordPress and other platforms.</p>\n\n\n\n<p>One of the main challenges is that WordPress site owners have a lot of freedom to use whatever themes and plugins they want on their sites, which makes performance tougher to tackle than the hosted platforms cited for comparison. The proposal states that &ldquo;achieving reasonable performance levels shouldn&rsquo;t be plugin territory, but part of core&rdquo; and that end-users should not be expected to become performance experts. </p>\n\n\n\n<p>&ldquo;Achieving high levels of performance requires technical considerations to be &lsquo;built-in&rsquo; across the whole stack; and as this is often not the case with themes/plugins, performance solutions are limited to &lsquo;brute-forcing&rsquo; performance solutions over non-performant behavior (e.g., output buffering),&rdquo; Stathopoulos said.</p>\n\n\n\n<p>The proposal drew a strong response from contributors, SEO consultants, and representatives from hosting companies, offering help and suggestions. </p>\n\n\n\n<p>WordPress lead developer Mark Jaquith, who has a particular interest in this topic, said the biggest issues he sees today are related to frontend performance and the asset pipeline:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>WordPress has no (direct) support for deferring style loading. It has no system for critical theme styles. For&nbsp;JavaScript, it has no support for&nbsp;<code>defer</code>,&nbsp;<code>async</code>,&nbsp;<code>type=\"module\"</code>, or&nbsp;<code>nomodule</code>. The default is to load all scripts in the&nbsp;header. WordPress itself shoves its extra code for emoji and the&nbsp;block&nbsp;library into the header. WordPress injects&nbsp;JS&nbsp;code and styles that eschew the asset pipeline altogether and directly attach to&nbsp;<code>wp_head</code>&nbsp;and&nbsp;<code>wp_footer</code>. Plugins just directly barf out bespoke script tags that are difficult to alter. By the time that you&rsquo;ve added 10 plugins to your site, your odds of having jQuery loaded (in the header) on every single page load are extremely high. No one is incentivized to be a good citizen (including WordPress itself) because there&rsquo;s always someone else who is polluting worse than you. &ldquo;If jQuery is already enqueued by something else, I guess I better use it.&rdquo;</p></blockquote>\n\n\n\n<p>Jaquith&rsquo;s summary describes a wider ecosystem problem and concluded with a sobering warning.</p>\n\n\n\n<p>&ldquo;It&rsquo;s a huge problem, and fixing it is going to take a lot of effort, willpower and time,&rdquo; he said. &ldquo;It&rsquo;s worth doing. If WordPress frontend performance continues to decline, the project is going to cease to be a viable option for any site that cares about its SERPS.&rdquo;</p>\n\n\n\n<p>One WordPress performance consultant, Eroan Boyer, suggested adding a dedicated tool in the Site Health screen that would show how much JS and CSS is loaded on each page type (front page, post, page, CPT), and where they originated. </p>\n\n\n\n<p>&ldquo;Attributing where a given script or stylesheet comes from is something I&rsquo;ve been working a lot on in the context of the AMP&nbsp;plugin,&rdquo; Google Engineer Weston Ruter said. &ldquo;I don&rsquo;t know if the implementation in the AMP plugin would be suitable for&nbsp;core, but I&rsquo;m interested in this space.</p>\n\n\n\n<p>&ldquo;If we can correlate where given markup comes from to the (negative) impact on page performance, then we can begin to highlight offending themes and plugins to begin to provide some accountability for what is being added to the frontend.&rdquo;</p>\n\n\n\n<p>Gutenberg engineer Riad Benguella published some research in August on <a href=\"https://riad.blog/2021/08/16/the-cost-of-wordpress-plugins-on-the-performance-of-the-editor/\">the impact of plugins&rsquo; performance on the editor</a>. Chief offenders among popular plugins included WooCommerce, Yoast SEO, and Jetpack. This is another aspect of performance that affects WordPress users more than site visitors. Web developer Takis Bouyouris <a href=\"https://make.wordpress.org/core/2021/10/12/proposal-for-a-performance-team/#comment-41989\">suggested</a> the creation of a performance framework that plugin developers could follow to avoid making products that negatively impact core performance, both on the frontend and in the admin.</p>\n\n\n\n<p>So far the proposal has not received any major objections and contributors seem eager to help in any way they can. Stathopoulos said the next steps will be to set up a Slack channel, a meeting schedule, and a space on make.wordpress.org. Once the infrastructure is in place, contributors can begin benchmarking performance, defining success criteria, and identifying priority projects for Core Web Vitals improvements.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Oct 2021 15:24:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Take the Guesswork Out of Selecting Fonts With the Adrian WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123897\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/take-the-guesswork-out-of-selecting-fonts-with-the-adrian-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=take-the-guesswork-out-of-selecting-fonts-with-the-adrian-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5893:\"<p class=\"has-drop-cap\">As usual, I am always on the lookout for plugins that allow users to have fun with their websites. I like to mix it up from time to time here on the Tavern and not be all-business-all-the-time. And, that is where the new <a href=\"https://adrian.style/\">Adrian plugin</a> comes in. Its goal is to take all of the hard work out of selecting a font pairing for end-users.</p>\n\n\n\n<p>The plugin derives its name from Swiss typeface designer Adrian Johann Frutiger. The plugin author, who wishes to remain anonymous, said the typographer was one of their favorites.</p>\n\n\n\n<p>&ldquo;All plugins have such serious names stuffed with SEO keywords, and I just wanted something fun,&rdquo; they added.</p>\n\n\n\n<p>Instead of the typical route of submitting it to the WordPress.org directory, the author decided to launch a one-off site to showcase the plugin. The cost runs the price of simply subscribing to an email list to access the download.</p>\n\n\n\n<p>Adrian is essentially a font selector. However, instead of picking each font for various theme elements, users can select from curated pairings. And, taking it one step more, it provides unique names for all of them.</p>\n\n\n\n<p>For example, the Breakfast Cereal (yes, that is the actual name) option uses the big and bold Luckiest Guy font for headings alongside News Cycle for body copy.</p>\n\n\n\n<img />Breakfast Cereal font option.\n\n\n\n<p>If nothing else, the plugin is simply a treat to test because of its fun names. With options like Cherry Soda, Cowboy, and Hollywood Lights, it adds a little flavor to the entire process.</p>\n\n\n\n<p>&ldquo;I think there are lots of people who would rather you hand them an option rather the ability to make the decisions themselves,&rdquo; said the plugin author. &ldquo;No one in their right mind looks at the 1.2K fonts in Google Fonts and says, &lsquo;I can&rsquo;t wait to pick a font pairing.&rsquo; It&rsquo;s overwhelming and out of most people&rsquo;s depth.&rdquo;</p>\n\n\n\n<p>Even as a former full-time theme designer, this could be a tedious job. I would often spend hours tinkering with pairings, attempting to find the right personality for a design.</p>\n\n\n\n<p>The plugin takes most of that work and boils it down to a little more than three dozen options.</p>\n\n\n\n<p>There is a little something for everyone. For example, if you want a retro gaming feel, the Insert Coin pairing of the pixelated Press Start 2P font for headings and Roboto Mono for text can bring a little nostalgia to your site.</p>\n\n\n\n<img />Insert Coin retro-gaming font pairing.\n\n\n\n<p>The plugin is built on top of the WordPress customizer. It adds a single section and control for selecting the font pairing.</p>\n\n\n\n<p>A downside to this might be for users currently running a block theme alongside the Gutenberg plugin. Menu links to access the customizer screen are hidden. However, there is still a button on the Themes admin screen, at least for now.</p>\n\n\n\n<img />Customize button for the active theme.\n\n\n\n<p>One of the things I like about the plugin is that it does not ruin body copy. Far too often, such systems try to get too fancy with text for longer-form content, and they utterly fail. Instead, Adrian keeps this in check. The fonts that veer into the wilder territory are limited to headings.</p>\n\n\n\n<p>The plugin is not all fun and games. It has its serious side too. The World Literature option that pairs Vollkorn and PT Serif is elegant, creating an enjoyable reading experience.</p>\n\n\n\n<img />World Literature font pairing.\n\n\n\n<p>The Novella option is similar, replacing Vollkorn with EB Garamond.</p>\n\n\n\n<p>The most irritating thing about the plugin is that it requires a full refresh of the customizer preview panel each time the user selects a new font. This is par for the course, though. Most themes and plugins I have tested for WordPress have never utilized the customizer to its fullest potential.</p>\n\n\n\n<p>With minimal JavaScript and the <a href=\"https://github.com/typekit/webfontloader\">Web Font Loader script</a>, the plugin could load the chosen font on the fly. It would make the experience much smoother. However, because the customizer is going the way of the dinosaur, I would use my time and effort to focus on a solution geared toward Full Site Editing.</p>\n\n\n\n<p>Success may vary from theme to theme. Typically, I use a three-font system with most of my theme design work. One font family for headings, one for body copy, and another for secondary text. While the plugin worked well enough to overrule the first two, it failed to alter the third. This is not necessarily Adrian&rsquo;s fault because it does not know the class name it must target in this instance.</p>\n\n\n\n<p>This is also the reason I favor design-related features falling squarely on the shoulders of theme authors. I like the forward-thinking of the plugin author &mdash; tackling font decisions in a way that does not overload end-users with seemingly infinite choices. However, I would rather see the system coming from the theme.</p>\n\n\n\n<p>With that said, I could be singing a different tune as the global styles system matures. It has not yet shipped with WordPress, but it could land in version 5.9 later this year for block theme users. As the community builds more standards around the feature, there may be more opportunities for plugins like Adrian to add features.</p>\n\n\n\n<p>The plugin author is not quite ready to go that route yet. &ldquo;I imagine that this can be ported pretty easily to the new FSE interface if I happen to get enough users to keep it going,&rdquo; they said. &ldquo;Finding someone who knows the new system and is a freelancer is next to impossible, so I thought why not test the idea the old way.&rdquo;</p>\n\n\n\n<p>For now, the plugin does its job pretty well, and most users still rely on the customizer. There is still plenty of time to figure out the rest.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Oct 2021 00:14:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: WordPress Global Community Sponsorship Program Will Not Include WordCamps for 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/wordpress-global-sponsorship-program-will-not-include-wordcamps-for-2022?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-global-sponsorship-program-will-not-include-wordcamps-for-2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4603:\"<p>The <a href=\"https://make.wordpress.org/community/2021/10/08/proposal-2022-global-community-sponsorship-program/\">proposal</a> for the 2022 Global Community Sponsorship program will not include funding for WordCamps again this year, due to the unpredictability of hosting in-person events. The pandemic continues to make conditions unfavorable in many areas of the world where WordCamp and meetup organizers have opted to continue with virtual events. </p>\n\n\n\n<p>In the past, the Global Community Sponsorship program has offered multiple tiers of funding in support of official, volunteer-organized WordPress community events. In 2020, before the program was <a href=\"https://make.wordpress.org/community/2020/07/23/moving-forward-with-online-events/\">suspended</a>, global sponsorship tiers ranged from $40,000 &ndash; $160,000.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The updated proposal knocks sponsorships back to a single annual package, billed at $10,000 USD per quarter. Sponsor benefits are similar to those offered in 2021. While the base package does not include WordCamp sponsorship, program participants can offer it by electing to pay an add-on, which is also billed quarterly. </p>\n\n\n\n<p>&ldquo;The proposed change for 2022 is that Global Sponsors who add on sponsorship for WordCamps will support&nbsp;<em>all</em>&nbsp;WordCamps (as opposed to choosing which WordCamps to sponsor a la carte), at the camp&rsquo;s top published level,&rdquo; WordPress.org community organizer Courtney Patubo Kranzke said.</p>\n\n\n\n<p>&ldquo;In short, there would not be a community grant as we&rsquo;ve had in the past, but WordCamps will get credited global sponsorship funds at the top local level.&rdquo;</p>\n\n\n\n<p>Patubo Kranzke said that volunteer engagement is currently low and the single package ensures sponsors have a centralized point of contact, as opposed to trying to coordinate with multiple teams of volunteer event organizers. </p>\n\n\n\n<p>Despite the potential availability of add-on funds, the <a href=\"https://make.wordpress.org/community/2021/09/13/announcement-updated-guidelines-for-in-person-wordcamps/\">updated guidelines for in-person WordCamps</a> state that organizers must be prepared to raise 100% of the expenses for their events. They are encouraged to keep their camps&rsquo; budgets lean with free or low cost venues that are fully refundable just in case. </p>\n\n\n\n<p>&ldquo;The expectation is in-person camps have to be able to cover all costs,&rdquo; Community team contributor Kevin Cristiano said. &ldquo;The global program will bring some relief to local organizers, but more so create a safety net for the entire program. What do I mean a safety net? We are navigating a world with risks on events like never before and we simply cannot afford another round of cancellations and lost deposits. It is our hope that once finalized the Global program can help bring stability and mitigate risks so we can have WordCamps begin in person again while being financially responsible.&rdquo;</p>\n\n\n\n<p>WordPress community events have been cut back significantly over the past two years. In 2019, local communities hosted 140 WordCamps and 805 WordPress meetup groups met more than 5,900 times. After the pandemic hit in 2020, the community hosted 31 WordCamps, most of which were held online. Meetup groups fell to 745 and met over 4,900 times. At the time of publishing in 2021, there have been just 14 WordCamps (all online) and 755 meetup groups met 2,400+ times. </p>\n\n\n\n<p>Despite the community team <a href=\"https://wptavern.com/wordpress-opens-applications-for-in-person-wordcamps\">re-opening applications for in-person WordCamps,</a> all the remaining WordCamps on the books for 2021 have been scheduled as online events. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In anticipation of returning to in-person events, WordPress Community Support has added a &ldquo;communicable disease liability coverage&rdquo; policy to its event insurance. Any in-person WordCamp that proceeds to the ticketing stage will have <a href=\"https://make.wordpress.org/community/2021/10/11/legal-protections-for-organizers/\">a disclaimer on the purchase page</a>, aimed at protecting organizers against claims related to COVID-19.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/community/2021/10/08/proposal-2022-global-community-sponsorship-program/\">proposal</a> for the 2022 Global Community Sponsorship program is still under discussion until October 15, and will be finalized by October 28, so WordPress can recruit sponsors by the end of the year.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Oct 2021 03:10:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: Dynamic Social Images for Plugins, Themes, and Patterns? Yes, Please\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124175\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/dynamic-social-images-for-plugins-themes-and-patterns-yes-please?utm_source=rss&utm_medium=rss&utm_campaign=dynamic-social-images-for-plugins-themes-and-patterns-yes-please\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4307:\"<p class=\"has-drop-cap\">Things move fast on social media. You get mere seconds to impress those who happen upon your posts promoting your latest project. You must also pack a lot of information into a small window that would potentially draw in an array of different users.</p>\n\n\n\n<p>WordPress has not been doing any favors for plugin and theme authors who share links to their directory-hosted extensions. Social cards for them include a simple image, title, and description. Instead, WordPress.org could dynamically generate the social images by populating them with other data, such as ratings, active installs, and more.</p>\n\n\n\n<p>That is just what GiveWP co-founder Matt Cromwell <a href=\"https://meta.trac.wordpress.org/ticket/5926\">proposed today in a new ticket</a>. &ldquo;When plugin/theme/block/pattern authors want to share their work on social platforms, they want to link directly to their product on .org and have it look nice,&rdquo; he said.</p>\n\n\n\n<p>He shared an image of an <a href=\"https://twitter.com/GiveWP/status/1447964733747908622\">earlier tweet</a> from the GiveWP Twitter account today:</p>\n\n\n\n<img />\n\n\n\n<p>The goal is to piggyback off the concept that GitHub put in motion over the summer. In June, the platform launched a new <a href=\"https://github.blog/2021-06-22-framework-building-open-graph-images/\">framework for building Open Graph images</a>. The system generates an on-the-fly image with data specific to a repository, issue, pull request, and more.</p>\n\n\n\n<p>In the context of WordPress plugins, themes, and patterns, there are bits of information that could help highlight the projects:</p>\n\n\n\n<ul><li>Contributors (plugins only)</li><li>Locales/Translations</li><li>Rating</li><li>Installs</li></ul>\n\n\n\n<p>This data is readily available on WordPress.org. All that would really be required is the code for generating the social images with it.</p>\n\n\n\n<p>Cromwell shared a mockup of what this might look like for a plugin, which is also available through the <a href=\"https://www.figma.com/file/ZAggnVZ5bk0W27ihzQGdWt/Untitled?node-id=0%3A1\">Figma project</a> he created:</p>\n\n\n\n<img />Mockup for a plugin&rsquo;s generated social image.\n\n\n\n<p>He also has an annotated version:</p>\n\n\n\n<img />Annotated version of social image mockup.\n\n\n\n<p>Thus far, the feedback has been positive in the ticket. This is probably one of those easy wins that most people in the community could get behind.</p>\n\n\n\n<p>&ldquo;I&rsquo;d only add that I&rsquo;d love this to be automatically translated,&rdquo; said Jean-Baptiste Audras <a href=\"https://meta.trac.wordpress.org/ticket/5926#comment:4\">in the ticket</a>. &ldquo;Which seems doable given the language/locale is provided by the URL.&rdquo;</p>\n\n\n\n<p>The idea is to use the translated text for the generated image if the shared link is from one of the many locale-specific subdomains on WordPress.org. So, a Spanish URL would use the existing Spanish translation.</p>\n\n\n\n<p>We could even apply this concept to other pages on WordPress.org, particularly those that might not have an image associated with them. This is a treatment that Courtney Engle Robertson, Web Design and Developer Advocate at GoDaddy, <a href=\"https://www.facebook.com/mathetos/posts/10223954958280286?comment_id=10223955011961628\">requested on Cromwell&rsquo;s Facebook post</a> about the idea. Workshops on the Learn section of the site, for example, could display the number of languages or length, so potential visitors have more information before clicking a link.</p>\n\n\n\n<p>The best thing about this idea is that the WordPress community likely already has the foundational code to make this happen. <a href=\"https://wptavern.com/automattic-acquires-social-image-generator-plugin-plans-to-integrate-with-jetpack\">Automattic purchased</a> Daniel Post&rsquo;s Social Image Generator plugin last month. The plan is to bundle the feature in Jetpack as part of its social media tools.</p>\n\n\n\n<img />Generated image using dynamic data.\n\n\n\n<p>With a bit of custom code, it is not a stretch to think we could have better social images in short order. The plugin was already built with customization in mind when I <a href=\"https://wptavern.com/create-per-post-social-media-images-with-the-social-image-generator-wordpress-plugin\">reviewed it in June</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Oct 2021 23:52:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordPress.org Profiles Now Show Activity for Contributions Made on GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/wordpress-org-profiles-now-show-activity-for-contributions-made-on-github?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-org-profiles-now-show-activity-for-contributions-made-on-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3263:\"<p>WordPress.org profiles got an <a href=\"https://make.wordpress.org/meta/2021/10/11/wordpress-org-profiles-now-show-github-activity/\">update</a> over the weekend that will make them a better reflection of contributors&rsquo; efforts on GitHub. Users can now authorize GitHub to detect their activity on the WordPress GitHub organization and display it on their profiles.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><br />&ldquo;Currently we&rsquo;re tracking New Issues submitted (by you), Closed Issues (by you), Pull requests submitted (by you), Pull requests merged (by you, and additionally the PR submitter gets a &lsquo;PR Merged&rsquo; event), and finally Pushes to default branches,&rdquo; WordPress lead developer Dion Hulse said. </p>\n\n\n\n<p>There are a few reasons why one&rsquo;s contributions might not be visible after linking accounts. The meta team has not built an importer for all previous issues and pull requests, so WordPress.org only has data from last Friday and onwards. Early adopters who linked their accounts when the feature was first being tested may need to re-authenticate since the earlier version had <a href=\"https://make.wordpress.org/core/2021/05/03/expired-github-and-wordpress-org-profile-connections/\">expired connections</a>.</p>\n\n\n\n<p>Linking accounts will help make it easier for the WordPress project to track contributions across multiple locations.</p>\n\n\n\n<p>&ldquo;In recent releases, the process of collecting props for non-WordPress.org contributions (namely&nbsp;Gutenberg) has been highly manual and error prone, occasionally resulting in contributors not receiving proper credit,&rdquo; Jonathan Desrosiers said when rolling out the first version of the app in March 2020. &ldquo;Connecting your WordPress.org and GitHub accounts will allow automatic tooling to be built which reduces the burden on release teams to maintain a credit list.&rdquo;</p>\n\n\n\n<p>Users who want to have their profiles include GitHub activity can navigate to the <a href=\"https://profiles.wordpress.org/profile/edit/group/1\">Edit Profile page on WordPress.org</a>, launch the app, and authorize their accounts with one click. </p>\n\n\n\n<p>Hulse is collecting feedback regarding adding more events (i.e. commenting on issues/PRs), combining events (i.e. Submitted &amp; Merged), and anything else that might improve the quality of activity tracked. Riad Benguella suggested adding a selector to filter the timeline by activity type. Hulse responded that the way profiles are currently set up, querying specific activities cannot currently be done in a performant way but that there are meta trac tickets (<a href=\"https://meta.trac.wordpress.org/ticket/479\">#479</a>&nbsp;and&nbsp;<a href=\"https://meta.trac.wordpress.org/ticket/518\">#518</a>) where they are discussing a broader overhaul for profiles.</p>\n\n\n\n<p>With a great deal more activity coming in from GitHub, the ability to filter these activities might make WordPress.org a more comprehensive tool for assessing job candidates or verifying Five for the Future contributions. If you have more ideas for the feature, you can <a href=\"https://make.wordpress.org/meta/2021/10/11/wordpress-org-profiles-now-show-github-activity/\">leave feedback on the announcement.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Oct 2021 01:26:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Proposal for Themes To Highlight Block Patterns From the Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=124111\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/proposal-for-themes-to-highlight-block-patterns-from-the-directory?utm_source=rss&utm_medium=rss&utm_campaign=proposal-for-themes-to-highlight-block-patterns-from-the-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5275:\"<p class=\"has-drop-cap\">Should developers bundle block patterns with their themes or submit them to the <a href=\"https://wordpress.org/patterns/\">WordPress.org directory</a>? That is the question that some will likely need to answer in the future.</p>\n\n\n\n<p>Currently, submissions are not open for the block pattern directory. However, that will change as the contributors eventually wrap up the pattern creation process. <a href=\"https://github.com/WordPress/pattern-directory/milestone/3\">The milestone</a> for this is set to October 15, but it is sitting at 25% completion at the moment.</p>\n\n\n\n<p>There are 146 themes in the directory with block patterns. Thus far, developers who have wanted to implement them have had no other choice but to bundle them. However, that may all change.</p>\n\n\n\n<p>Core contributor Kjell Reigstad recently <a href=\"https://github.com/WordPress/gutenberg/issues/35364\">proposed an alternative method</a>. &ldquo;With the launch of the pattern directory (and the upcoming ability for folks to submit their own patterns to it), we should consider building a route through which themes can highlight specific patterns to their users,&rdquo; he said.</p>\n\n\n\n<p>Reigstad proposed using the standard <code>theme.json</code> file to allow theme authors to surface or give special attention to patterns best suited to the theme&rsquo;s design.</p>\n\n\n\n<p>He listed four primary benefits such a system would bring:</p>\n\n\n\n<ol><li>It would cut back on theme code, creating a side benefit of simplifying the review process for the Themes Team.</li><li>Patterns could be updated, tested, and reviewed separately.</li><li>More patterns would be accessible for all users if theme authors jumped on board.</li><li>Multiple themes could make use of the same patterns, reducing redundancy in the pattern directory.</li></ol>\n\n\n\n<p>The idea would be an additional step to this sort of utopian future where users can mix and match various elements and have them <em>just work</em> with whatever theme they are using. I am excited about it, but we still have a long way to go. When all of the core blocks support a full suite of design options, this will be far easier to accomplish, particularly when it comes to layouts.</p>\n\n\n\n<p>The idea is built on the premise that themes have begun to create their own <em>de facto</em> standard of putting all of their patterns into a single category titled &ldquo;Theme Name.&rdquo; This is the part where the concept breaks down. The truth is that not many themes are bundling dozens of patterns yet, but I have no doubts that they will.</p>\n\n\n\n<p>Tove, a <a href=\"https://wptavern.com/tove-a-block-based-wordpress-theme-by-anders-noren\">recently-released block theme</a> by Anders Nor&eacute;n, includes over 40 patterns under seven custom categories. If the developer had put all of them into a single group, it would have been a poor user experience.</p>\n\n\n\n<img />Tove patterns and categories.\n\n\n\n<p>I expect dozens of patterns will be common as they become a more vital piece of the theme development experience. If we build a system that encourages themers to highlight those from .ORG, it should be created with that reality in mind.</p>\n\n\n\n<p>Reigstad did mention another idea that might work better if themes are highlighting dozens of patterns. He proposed bubbling them to the top of the list and giving them a special badge of some sort. This method would keep theme authors from overfilling the &ldquo;theme category&rdquo; with dozens or hundreds of patterns.</p>\n\n\n\n<p>If democratizing the site design process is the ultimate goal, this feature should help further it. The more pathways we can enable for end-users to build the sites they want, the better.</p>\n\n\n\n<p>There is no reason for every theme to bundle a custom-made hero banner with a heading, paragraph, and button. Narrowing that down to a set of options that work everywhere gives users more power. They might also not feel locked out of a favored design element if they switch themes down the road.</p>\n\n\n\n<p>It would give theme developers more flexibility too. When someone else has already created several of the patterns they wanted to bundle, they can simply highlight them and not write any code to, essentially, make them a part of the theme itself.</p>\n\n\n\n<p>The biggest holdup for patterns is the existing interface for finding and inserting them. The experience is sub-par at best when you move beyond a couple of dozen.</p>\n\n\n\n<p>I am still in favor of an overlay with tiled patterns that are easily explorable. An earlier concept by Shaun Andrews was <a href=\"https://github.com/WordPress/gutenberg/pull/35006#issuecomment-929605688\">shared in a recent draft ticket</a> for a new patterns explorer.</p>\n\n\n\n<img />Potential block patterns overlay.\n\n\n\n<p>When we get an interface that is fleshed out like this, other ideas around patterns should feel like a natural part of WordPress.</p>\n\n\n\n<p>There will likely always be a place for developers to build and bundle their own patterns. Some make use of specific styles or other design elements that are only present within the theme itself.</p>\n\n\n\n<p>For now, I am looking forward to a time when I can mix and match patterns from different community designers on a single site.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Oct 2021 23:48:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"Gutenberg Times: How can we make building blocks easier,  New 2022 Theme, Persistent User preferences and more – Weekend Edition 188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=19226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"https://gutenbergtimes.com/how-can-we-make-building-blocks-easier-new-2022-theme-presistent-user-preferences-and-more-weekend-edition-188/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18850:\"<p>Howdy, </p>\n\n\n\n<p>I am so thrilled that I now have more time to work on community outreach, organize Live Q &amp; As and learn more about Gutenberg development. There is also a lot going on in the WordPress community. People are sharing plenty. Last week, the edition had more a theme related focus, this week, we have a developer focus, it seems, despite we just had our Live Q &amp; A on block-based theme. See for yourself! </p>\n\n\n\n<p>Did you see the <a href=\"https://wppodcasts.com/\">WPPodcasts.com</a> site by the team around the HeroPress network, Topher and Cate DeRosia! All WordPress podcasts in one spot! All because of RSS feeds. A standard published in 1999, now hardly mentioned anymore. </p>\n\n\n\n<p><a href=\"https://twitter.com/alexhern/status/1445130867073032195\">The six-hour shutdown of Facebook</a>, helped many of us yet again to appreciate the open web, and the people who keep it that way. And yes, that&#8217;s all of you, dear readers, the theme, and plugins developers, site builders, content creators and site owners using WordPress.  </p>\n\n\n\n<p>Keep it up and keep creating! </p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n\n<p><strong>Table of content</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#3-using-gutenberg-for-content-creators-and-site-builders\">Using Gutenberg for Content Creators and site builders</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-theme-development-in-for-full-site-editing\">Theme development in for Full-Site Editing</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-the-future-of-theme-switching\">The Future of Theme Switching </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-custom-blocks-development\">Custom Blocks Development</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-using-create-block-script\">Using create-block script to build blocks</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#4-w\">WordPress Events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#pagebuilder\">Page Builder Summit</a></li></ul></li></ul></div>\n\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  </p>\n\n\n\n\n<h2 id=\"3-using-gutenberg-for-content-creators-and-site-builders\">Using Gutenberg for Content Creators and site builders</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> collaborated with the Gutenberg developers and designers to describe the <strong><a href=\"https://make.wordpress.org/core/2021/10/06/core-editor-improvement-continued-progress-on-accessibility/\">continued progress on accessibility</a></strong> in using the block editor for existing and future features. She has details on the Navigation block&#8217;s accessibility as well as for the Gallery Block Refactor.  You&#8217;ll also find an asorted list of high impact improvements. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his post on the Torque Magazine, <strong>Will Morris</strong> shows you <strong><a href=\"https://torquemag.io/2021/09/use-wordpress-block-pattern-directory/\">how you can use the WordPress Pattern Directory</a></strong>. He explains first what Block patterns are and what the Directory entails. Then he walks you through how to make a block pattern from the directory usable on your site by copy/paste. Another way is adding a block pattern from the Inserter panel. Both variations are explained in a step-by-step way and should get a WordPress newbie or just someone who just switched from classic editor to the block editor, started. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/ClorithMJ\">Marius Jensen</a></strong> updated his <a href=\"https://wordpress.org/plugins/blockeditor-fullscreen-mode-control/\"><strong>Persistent Block Editor Settings plugin</strong></a> He added support for the following user settings: </p>\n\n\n\n<ul><li>&#8211; Block breadcrumbs </li><li>&#8211; Most used blocks </li><li>&#8211; Caret positioning </li></ul>\n\n\n\n<p>All settings are stored with the individual user profile information, and persist in between computer or browser changes. </p>\n\n\n\n<h2 id=\"0-theme-development-in-for-full-site-editing\">Theme development in for Full-Site Editing</h2>\n\n\n\n<p><strong>Ben Dwyer</strong> described in his post the role <a href=\"https://themeshaper.com/2021/10/06/universal-themes/\"><strong>Universal Themes</strong></a> will play in WordPress ecosystem. He defined the term Universal Theme as a theme that works like a classic theme for a site that has not enabled Full-site editing, and act like a block-based Theme for those sites that do.  He shares code-snippets for templates. Dwyer also stipulates, that Universal Themes are a temporary measure, as their need will diminish with Site Editor&#8217;s improvements further down the line.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Kjell Reigstad</strong> just <strong><a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">introduced the new Twenty-Twenty-Two</a></strong> theme. It&#8217;s bird themed, and I truly loved the backstory of this inspiration. Reigstad tells the story that an array of birds joined his family every morning for breakfast at their bird feeder, and the theme is a mediation over what he saw. My husband and I had a similar breakfast with wildlife experience. Our birds were a bit larger: a white duck, herons, ibises, and Limpkins. </p>\n\n\n\n<p>The theme will be a pure block-based theme geared towards the Full-site editing with difference color palettes exposed to the Global Styles interface and interesting block-patterns. In the post, the images are mock-ups. The Themes still needs to be built. Reigstad teamed up with <strong>Jeff Ong</strong> for the development. </p>\n\n\n\n<p><strong>WPTavern</strong> published two posts about it, too</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/default-theme-releases-may-become-more-frequent-following-wordpress-5-9\">Default Theme Releases May Become More Frequent Following WordPress 5.9</a> by Sarah Gooding</li><li><a href=\"https://wptavern.com/first-look-at-wordpress-upcoming-twenty-twenty-two-default-theme-the-most-flexible-default-theme-ever-created-for-wordpress\">First Look at WordPress’ Upcoming Twenty Twenty-Two Default Theme</a> by Justin Tadlock</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>This week&#8217;s Live Q &amp; A recording &#8211;  <a href=\"https://www.youtube.com/watch?v=eiIhJdFfamA\"><strong>Going from classic to block-based Theme</strong></a> with <strong>Ellen Bauer, Anders Noren</strong> and <strong>Carolina Nymark</strong> &#8211;  is now available on <a href=\"https://www.youtube.com/watch?v=eiIhJdFfamA\">YouTube</a>. The blog post with resources and transcript will follow next week.  </p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=eiIhJdFfamA\"><img /></a>\n\n\n\n<p>&#8220;Creating a scaled and fluid type system takes a bit of creativity, especially in the context of WordPress block themes, but <a href=\"https://richtabor.com/fluid-type-scale-theme-json/\">here&#8217;s what I&#8217;ve explored</a>.&#8221; <strong><a href=\"https://twitter.com/richard_tabor\">Rich Tabor</a></strong> tweeted. <strong><a href=\"https://richtabor.com/fluid-type-scale-theme-json/\">Using a Fluid Type Scale in WordPress Block Themes with Theme.json</a></strong></p>\n\n\n\n<h3 id=\"1-the-future-of-theme-switching\">The Future of Theme Switching </h3>\n\n\n\n<p><strong>Anne McCarthy </strong>published the <a href=\"https://make.wordpress.org/test/2021/10/05/fse-program-block-theme-switching-summary/\"><strong>Summary from the Theme Switching Exploration</strong></a> in context of the FSE-outreach program and the 10th call for testing. It had some interesting insights, like the expectation that user created templates are thethered to the theme and don&#8217;t stay around after switching a theme. Or that custom block styles, font-color and type choices survive after the theme is changed. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In her post <a href=\"https://make.wordpress.org/design/2021/10/08/adventures-in-block-theme-switching/\"><strong>Adventures in Block Theme Switching</strong></a>, <strong><a href=\"https://twitter.com/critterverse\">Channing Ritter</a></strong>, team member on the WordPress design team, used the comments from contributors as inspiration for three different approaches on the entrance for theme management: </p>\n\n\n\n<ol><li>The first idea envisions a redesing of the <strong>Theme Live Preview </strong>to allow for switching theme after a preview with a way to apply existing styles and templates. </li><li>The second idea makes theme management available via <strong>Global Styles</strong> sidebar of the the Site Editor. </li><li>The third idea takes the idea of shipping more then one color schemes  from the Twenty-Twenty-Two Theme and envisions a way to actually use <strong>template parts from all installed themes</strong> on a site. </li></ol>\n\n\n\n<p>It definitely is easier to understand when you watch the video and here longer explanations for each idea. Share your ideas and comment on the once before us! This is the moment you can influence where the team is taking the next phase of development. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2 id=\"2-custom-blocks-development\">Custom Blocks Development</h2>\n\n\n\n<p><a href=\"https://us02web.zoom.us/webinar/register/3316333825196/WN__4hq3dHuR5uT3ZSG7BnOqA\">Join us next week, Thursday, October 14th, 2021</a>, for a Discussion with <strong>Helen Hou-Sandi, Mark Jaquith and Riad Benguella</strong> on <strong><strong><a href=\"https://us02web.zoom.us/webinar/register/3316333825196/WN__4hq3dHuR5uT3ZSG7BnOqA\">How can we make building blocks easier?</a></strong></strong> It&#8217;s a continuation of a discussion started by Jaquith a few weeks ago: </p>\n\n\n\n<p><a href=\"https://twitter.com/markjaquith/status/1432461667187765251\">The tweet</a> about an exploration from Jaquith, inspired by Hou-Sandi&#8217;s blog post, spurred a flurry of conversation around custom block development. The premise? <em>“What if building custom blocks for the Block Editor was as easy as supplying attributes and a block of HTML? What if this produced React editing code and PHP rendering code without a build step?”</em>  All three panelists are long-time WordPress contributors who have been different approaches on tackling these ideas. We will have more links and resource for you on the Live Stream. </p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/3316333825196/WN__4hq3dHuR5uT3ZSG7BnOqA\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>This week, I published a proposal for a new event series on the Make Core Blog: <a href=\"https://make.wordpress.org/core/2021/10/07/proposal-gutenberg-developer-hours-series-of-events/\"><strong>Proposal: Gutenberg Developer Hours series of events</strong>.</a> It would be great if you could comment on this idea and let me know if you are interested in being part of the panel. It&#8217;s meant to be a low-effort way to help out other developers, without getting into all the administrative part of organizing those sessions. That&#8217;s what I will do. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/leeshadle\">Lee Shadle</a></strong> was a guest on the WPTavern Jukebox podcast on <a href=\"https://wptavern.com/podcast/8-lee-shadle-on-how-blocks-create-new-opportunities\"><strong>How Blocks Create New Opportunities.</strong></a> Podcast host, <strong>Nathan Wrigley</strong> discussed with Shadle the world of Gutenberg blocks and the new world of WordPress product business. It worth listening to the show undistracted. Shadle and Wrigley go deep into change mangement and how business owners might be able to approach building for WordPress in the classic way and slowly move into the block-based way without jeopardizing their revenue or the time they spend with their families. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p id=\"4-a-href-https-us-02-web-zoom-us-webinar-register-1016333846354-wn-v-e-xlr-fa-rcab-gz-78-jgj-8-ca-converting-classic-widgets-to-blocks-a\"><a href=\"https://us02web.zoom.us/webinar/register/1016333846354/WN_v-EXlrFaRcabGz78jgj8CA\">Join us on October 28th at 12 pm EDT / 16:00 UTC</a> <strong>Gutenberg Times Live Q &amp; A: <a href=\"https://us02web.zoom.us/webinar/register/1016333846354/WN_v-EXlrFaRcabGz78jgj8CA\">Converting classic widgets to blocks</a> </strong>Learn from the BuddyPress team members, <strong>Mathieu Viet</strong>, <strong>David Cavins</strong>, <strong>Varun Dubey</strong>.</p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/1016333846354/WN_v-EXlrFaRcabGz78jgj8CA\"><img /></a>\n\n\n\n<h3 id=\"4-using-create-block-script\">Using create-block script to build blocks</h3>\n\n\n\n<p><strong><a href=\"https://twitter.com/dgwyer\">David Gwyer</a></strong> started a new site on the domain <a href=\"https://innerblocks.com/\">Innerblocks.com</a> to share his experience developing for Gutenberg in tutorials and resources. The first tutorial is titled:  <a href=\"https://innerblocks.com/creating-a-new-block-for-the-gutenberg-editor/\"><strong>Creating a New Block for the Gutenberg Editor</strong></a>. </p>\n\n\n\n<p>Gwyer also curates <a href=\"https://github.com/dgwyer/gutenberg-development-resources\">Gutenberg Developer Resources</a> on GitHub. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/phil_sola123\">Phil Sola</a></strong> has experimented with the WordPress <a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-create-block/\">create-block script</a> and found a way to use it also for a multi-block plugin. He published the code on GitHub: <strong><a href=\"https://github.com/phil-sola/multi-block-plugin\">Multi blocks plugin</a></strong>.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In this Thursday-Twitch-Stream, <strong><a href=\"https://twitter.com/ryanwelcher\">Ryan Welcher</a></strong> also covered <strong><a href=\"https://www.twitch.tv/videos/1169960035\">using create-block for a multi-block plugin</a></strong> in a step-by-step video tutorial. <a href=\"http://Creating a plugin with @wordpress/create-blocks that has multiple blocks\">The GitHub repo is available here</a>. </p>\n\n\n\n<p>For this I only got to listened for the first 10 minutes and learned about the <em>Dependency Extraction Plugin</em> for webpack that replaces references to external packages to reference to WordPress global script that are already available in any WordPress instance. Because of that all your plugin doesn&#8217;t need to bundle all the packages, and be kept really small.  </p>\n\n\n\n<p>In previous Twitch Streams Welcher covered: </p>\n\n\n\n<ul><li><a href=\"https://www.twitch.tv/videos/1163471262\">Converting a shortcode to a custom block</a></li><li><a href=\"https://www.twitch.tv/videos/1156915530\">Updating the block examples </a></li><li><a href=\"https://www.twitch.tv/ryanwelchercodes/clip/UgliestTalentedBeaverOSsloth-t7djXmqOz2ObzwO1\">First steam! Let&#8217;s mess with some custom blocks</a></li></ul>\n\n\n\n<p>Welcher holds regular <a href=\"https://www.twitch.tv/ryanwelchercodes\">Live Twitch streams on Thursdays 10:30 am EDT / 14:30 UTC</a>. Follow him and you will be notified when he goes live. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total\" /></p>\n\n\n\n\n<h2 id=\"4-w\">WordPress Events</h2>\n\n\n\n<h3 id=\"pagebuilder\">Page Builder Summit</h3>\n\n\n\n<p><strong><a href=\"https://pagebuildersummit.com/\">Page Builder Summit</a></strong> is coming back and will be happening <strong>October 18 &#8211; 22, 2021. </strong>Nathan Wrigley and Anchen Le Roux <a href=\"https://pagebuildersummit.com/schedule/\"><strong>just published the schedule</strong></a></p>\n\n\n\n<p>Here is the list of Gutenberg / Block-editor presentations </p>\n\n\n\n<ul><li><strong>Forging the Future with Full Site Editing</strong> with Anne McCarthy (10/18 &#8211; 9am EDT)</li><li><strong>The Future of Building WordPress Websites </strong>with Brian Gardner (10/18 &#8211; 12pm EDT)</li><li><strong>What does Full Site Editing Mean for Page Builders?</strong> with Joe Casabona (10/19/ 9am EDT)</li><li><strong>Customizing WordPress Block Editor for Client Projects </strong>with Birgit Pauli-Haack (10/19/ &#8211; 10 am EDT)</li><li><strong>Mastering modern WordPress with Full-site Editing &amp; Custom Blocks</strong> with Rob Stinson (10/20/ &#8211; 5am EDT)</li><li><strong>How to Build Any Page Layout Using Kadence Blocks</strong> with Jake Pfohl (10/20/ &#8211; 12pm EDT)</li><li><strong>Building a Custom Blog Archive with Blocks</strong> with Mike Oliver (10/21/ 11am EDT)</li><li><strong>RIP Page Builders</strong> with Chris Lubkert (10/19 &#8211; 1pm EDT)</li></ul>\n\n\n\n<p>The schedule is not out yet. <a href=\"https://pagebuildersummit.com/\"><strong>Sign-up for the waitlist</strong></a> to receive notifications.</p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Oct 2021 05:47:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: WPCloudDeploy Brings Site and Server Management to the WordPress Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/wpclouddeploy-brings-site-and-server-management-to-the-wordpress-admin?utm_source=rss&utm_medium=rss&utm_campaign=wpclouddeploy-brings-site-and-server-management-to-the-wordpress-admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8512:\"<p class=\"has-drop-cap\">WPCloudDeploy recently <a href=\"https://wpclouddeploy.com/whats-new-in-wpclouddeploy-4-10-5/\">launched version 4.10.5</a> of its rapidly-maturing <a href=\"https://wpclouddeploy.com/\">WordPress plugin</a> of the same name. The project is a WordPress-native replacement for SaaS services like Cloudways, Ploi, SpinupWP, and others.</p>\n\n\n\n<p>Customers still need to hook up to a cloud server provider, such as Digital Ocean, Linode, AWS, or elsewhere. However, the project seeks to cut out the middleman for developers and agencies running multiple sites. They are specifically targeting those who would routinely manage 20 or more.</p>\n\n\n\n<p>&ldquo;It&rsquo;s a true plugin where everything you need runs on your own site (except, of course, the other servers you are provisioning and managing which reside at their respective cloud server providers),&rdquo; said WPCloudDeploy owner Nigel Bahadur.</p>\n\n\n\n<img />Server list screen.\n\n\n\n<p>Technically, WPCloudDeploy opened to the public in March 2020, but Bahadur was not ready to aggressively start letting the community know about it. He said the team is now at a point where they have a core group of users who are happy with the plugin. They have been rolling out new functionality every month for a year and a half and feel like it goes above and beyond alternatives.</p>\n\n\n\n<p>&ldquo;We were basically in stealth mode for most of that time &mdash; we did enough marketing to get a core group of users and then tried to make those users happy,&rdquo; he said. &ldquo;We even offered a heavily discounted lifetime license last year during the Black Friday sales period &ndash;- the folks that purchased then are very happy right now.&rdquo;</p>\n\n\n\n<p>With a mature project, it is time to branch out into the larger WordPress developer and agency market.</p>\n\n\n\n<p>The plugin promises its customers that they can deploy unlimited WordPress-optimized servers and sites to any cloud or bare-metal server. It has direct integration with 10 of the most popular cloud server providers.</p>\n\n\n\n<img />Server status and overview screen.\n\n\n\n<p>However, provider integration is limited to which <a href=\"https://wpclouddeploy.com/pricing/\">pricing plan</a> the customer decides on. The core tier, which costs $199 per year, only works with Digital Ocean. The business tier runs $499 and adds Linode, Vultr, and UpCloud to the mix. For the full range of providers, customers must upgrade to the all-access plan for $799. Both of the top tiers also have a lifetime purchase option.</p>\n\n\n\n<p>Each tier of the plan is not merely limited to integration with more providers. For example, agencies can sell site and server subscriptions via WooCommerce through the business or all-access packages. White label and teams features are available at all levels.</p>\n\n\n\n<h2>Selling Subscriptions through WooCommerce</h2>\n\n\n\n<p class=\"has-drop-cap\">WPCloudDeploy allows agencies to sell subscriptions to cloud servers or WordPress sites through WooCommerce. Because of the feature&rsquo;s recent interest, Bahadur said it will likely be a focus area next year for more enhancements.</p>\n\n\n\n<p>&ldquo;For servers, you can create subscription products where the user gets to choose the provider and location,&rdquo; he said. &ldquo;Or you can create them where each product represents a single provider (useful if you want to price your AWS servers differently from your DigitalOcean servers).&rdquo;</p>\n\n\n\n<p>They have their own separate service that builds on top of this called <a href=\"https://wpcloudpanel.com/\">WPCloudPanel</a>. The team created it with Beaver Builder, WooCommerce, WooCommerce Subscriptions, and Ninja Tables. The entire site required no additional custom code.</p>\n\n\n\n<img />WooCommerce-integrated sales page.\n\n\n\n<p>&ldquo;For sites, you can create subscriptions where the site is automatically placed on a particular server in a particular region,&rdquo; said Bahadur. &ldquo;Or you can create them where the site is placed on any available server from an admin-defined list of servers. It&rsquo;s a great way to get a highly customizable end-user purchasing experience using a toolset you already know.&rdquo;</p>\n\n\n\n<p>Developers and agencies are not necessarily limited to WooCommerce. Instead, they can take the team&rsquo;s code and port it to other eCommerce or membership plugins. One such customer is currently working on a MemberPress solution.</p>\n\n\n\n<p>&ldquo;Since the WPCloudDeploy code is just hooking into various WooCommerce actions and filters, it&rsquo;s basically just finding a similar hook in their favorite membership plugin, copying the relevant parts of our WooCommerce integration code, and then ripping out and replacing the WooCommerce-specific function calls,&rdquo; said Bahadur.</p>\n\n\n\n<h2>From Inception to the Future</h2>\n\n\n\n<p class=\"has-drop-cap\">Bahadur said his team started the project to meet their own needs. &ldquo;We really liked the idea of being able to use our own servers for WordPress sites. But at the time, there were still a lot of security questions and other usability and support issues that we were running into from the usual pool of SaaS providers.&rdquo;</p>\n\n\n\n<p>He then decided that his team would build something themselves. Jokingly, he said he completely underestimated the project and how far he would take it.</p>\n\n\n\n<p>&ldquo;I can&rsquo;t say that, back in 2019, I looked too far beyond the WP ecosystem because what I wanted was WP-specific functionality,&rdquo; he said. &ldquo;Cloudways was one of a number of providers I was using at the time, and they offered other services beyond WP. But the overall concept was the same whether it was WP or a server that was suitable for another ecosystem. I think I looked at every WP option there was at the time, including command-line services like WordOps.&rdquo;</p>\n\n\n\n<p>He said he was not necessarily sure it was important to have such a project in the WordPress space.</p>\n\n\n\n<p>&ldquo;I think what is important is to constantly remind folks of how much WordPress can do, how powerful it is, and to keep battling against the perception that WordPress is less secure than other options,&rdquo; said Bahadur. &ldquo;If you can use a WordPress plugin to run and manage all your servers and sites and/or even act as a hosting service, then we&rsquo;ve pushed the WP boundaries far beyond what anyone thought of doing two years ago.&rdquo;</p>\n\n\n\n<p>He thinks it is even more important that WordPress professionals to be able to build products that compete against the feature depth and &ldquo;sexiness&rdquo; of SaaS services.</p>\n\n\n\n<p>&ldquo;Think about how much more capital would stay within the WP ecosystem if you had a project management plugin that was as good as, say Clickup.com or Monday.com,&rdquo; said Bahadur. &ldquo;Or a CRM plugin that was as good as Hubspot. But to build plugins with that level of polish requires lots and lots of capital in the first place. Even though WP is a billion-dollar ecosystem, somehow we still don&rsquo;t have the ability to finance the build-out of world-class functional components with a world-class UX experience, and I think that&rsquo;s a shame &mdash; and a major opportunity for VCs.&rdquo;</p>\n\n\n\n<p>He does not think WPCloudDeploy has quite met the smoother UIs of SaaS services yet. However, he believes it can prove that it rivals or exceeds such competitors in terms of functionality.</p>\n\n\n\n<p>&ldquo;So the next time someone asks, &lsquo;can you really build that on WP?&rsquo;, maybe they can point to WPCD and say, &lsquo;Hey, if you can build this on WP, then, hell yeah, we can build that thingamajig that you want&hellip;,&rdquo; said Bahadur.</p>\n\n\n\n<p>The team maintains a Trello board with a <a href=\"https://trello.com/b/pYl53rvM/wpcloud-deploy-public-roadmap\">public roadmap</a>. The most-requested feature right now is support for OpenLiteSpeed, an open-source web server.</p>\n\n\n\n<p>However, Bahadur said the most tantalizing possibilities for the long term come from working with the REST API.</p>\n\n\n\n<p>&ldquo;Unlike SaaS tools, you&rsquo;ll be able to customize it using our built-in ones as a template,&rdquo; he said. &ldquo;Ambitious agencies will be able to add their own plugin to extend our REST API without waiting for us to add new endpoints that meet their needs.&rdquo;</p>\n\n\n\n<p>Eventually, the core plugin will be available on GitHub. Developers will be able to contribute new endpoints to the core product via pull requests.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Oct 2021 00:26:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: Hacktoberfest Adds GitLab Support, Updates Participation Requirements to Combat Open Source Project Spam\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123630\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:271:\"https://wptavern.com/hacktoberfest-adds-gitlab-support-updates-participation-requirements-to-combat-open-source-project-spam?utm_source=rss&utm_medium=rss&utm_campaign=hacktoberfest-adds-gitlab-support-updates-participation-requirements-to-combat-open-source-project-spam\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4410:\"<p>The <a href=\"https://www.digitalocean.com/blog/hacktoberfest-is-back-2021/\">8th annual Hacktoberfest</a> is underway with a few important changes this year. <a href=\"https://hacktoberfest.digitalocean.com/\">Hacktoberfest</a>, a virtual event sponsored by DigitalOcean and community partners, has traditionally encouraged open source contribution during the month of October by rewarding participants with a t-shirt for submitting pull requests. The initiative has added support for participation on GitLab this year, a highly requested expansion that will include more open source projects that aren&rsquo;t hosted on GitHub.  </p>\n\n\n\n<p>Participation has grown from 676 people the first year to over 150,000 in recent years. In 2021, the program has been changed to be only applicable to opt-in repositories after being linked to an <a href=\"https://twitter.com/jennericthunk/status/1311564600853241858\">influx</a> of <a href=\"https://twitter.com/henrylim96/status/1311357290486722560\">spam</a> for open source maintainers in previous years. Maintainers of popular projects were getting frustrated by wasting their time handling nonsense PR&rsquo;s and marking them as spam during Hacktoberfest. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Ugh, oh no, October is starting. Prepare for a month of spam pull requests&hellip; whatwg/html has already been hit hard, at 5 in the last 3 hours.<a href=\"https://twitter.com/hacktoberfest?ref_src=twsrc%5Etfw\">@hacktoberfest</a>, please please stop this annual tradition of wasting maintainers\' time. You are a net negative for the world.</p>&mdash; Domenic Denicola (@domenic) <a href=\"https://twitter.com/domenic/status/1311355857465225218?ref_src=twsrc%5Etfw\">September 30, 2020</a></blockquote>\n</div>\n\n\n\n<p>Starting this year, pull requests will only count towards participation if they are in a repository with the &lsquo;<em>hacktoberfest</em>&lsquo; topic and once they have been merged and approved by a maintainer or labeled as &lsquo;<em>hacktoberfest-accepted</em>.&rsquo; Participants must contribute four accepted PR&rsquo;s to an opted-in repo in order to qualify for the free, limited-edition Hacktoberfest t-shirt.</p>\n\n\n\n<p>&ldquo;Maintainers are the backbone of the open-source community and this year, we&rsquo;re focused more than ever on ensuring maintainers are receiving the love they deserve,&rdquo; DigitalOcean Senior Community Relations Manager Phoebe Quincy said. &ldquo;Our maintainer-friendly rules include allowing repos to opt-in to Hacktoberfest, ensuring only accepted pull requests count towards participants&rsquo; Hacktoberfest goals, and for the first time ever, enabling maintainers to receive a Hacktoberfest t-shirt without having to submit pull requests.&rdquo;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hacktoberfest?ref_src=twsrc%5Etfw\">@hacktoberfest</a> is here! Contribute to your favorite open source projects and get awesome swag! What could be better? Since we know <a href=\"https://twitter.com/hashtag/ElasticPress?src=hash&ref_src=twsrc%5Etfw\">#ElasticPress</a> is your favorite project &#128521;, here\'s a handy link to our Hacktoberfest issues <a href=\"https://t.co/U11660zNAU\">https://t.co/U11660zNAU</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a></p>&mdash; ElasticPressIO (@ElasticPressIO) <a href=\"https://twitter.com/ElasticPressIO/status/1443263706020732928?ref_src=twsrc%5Etfw\">September 29, 2021</a></blockquote>\n</div>\n\n\n\n<p>Open source maintainers and contributors can join anytime during the month until October 31st. If you maintain a WordPress-related open source project, you can <a href=\"https://hacktoberfest.digitalocean.com/resources/maintainers\">get your project ready</a> to receive contributions by adding the &lsquo;Hacktoberfest&rsquo; topic to your repository, tagging issues with the &lsquo;Hacktoberfest&rsquo; label, and adding a CONTRIBUTING.md file. Maintainers are also encouraged to select issues that have a well-defined scope and are self-contained. Merging PR&rsquo;s, adding the&nbsp;&lsquo;hacktoberfest-accepted&rsquo;&nbsp;label, and marking &lsquo;invalid&rsquo; or &lsquo;spam&rsquo; contributions will all count towards engaged maintenership participation.</p>\n\n\n\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Oct 2021 00:20:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Post Status: Post Status Excerpt (No. 27) — CaboPress and Owning Your Own Content (For Some)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=87584\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://poststatus.com/excerpt/27/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3978:\"<h2>&#8220;While WordPress <em>does</em> democratize publishing there are people today that don’t or (perhaps worse) can\'t take advantage of it.&#8221;</h2>\n\n\n\n<p class=\"has-drop-cap\">In this episode of Post Status Excerpt, Cory comes back freshly tanned from <strong>CaboPress</strong> to share his experiences and one big takeaway point that everyone can appreciate. David brings up how Facebook\'s outage this week made him start to give pause before quipping on Twitter about &#8220;owning your own content.&#8221; He asks if or how WordPress and the open web can help the people for whom Facebook <em>is</em> the internet.</p>\n\n\n\n<p><strong>Also covered in this episode: </strong>A shout out to <strong>WordCamp US 2021</strong> which was held virtually for the first time on October 1st — a fine virtual event after only eight weeks of planning!</p>\n\n\n\n\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will brief you on important WordPress news — in about 15 minutes or less! Learn what\'s new in WordPress in a flash. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and don’t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://twitter.com/search?q=%23CaboPress\">#CaboPress on Twitter</a></li><li><a href=\"https://cabopress.com/\">CaboPress.com</a></li><li><a href=\"https://poststatus.com/wordcamp-us-2021-summary/\">WordCamp US 2021 Summary (Post Status)</a></li><li><a href=\"https://poststatus.com/think-first-before-saying-own-your-own-content/\">Thinking First Before Saying &#8220;Own Your Own Content!&#8221;</a></li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset (Twitter)</a></li><li><a href=\"https://twitter.com/corymiller303\" target=\"_blank\" rel=\"noreferrer noopener\">Cory Miller (Twitter)</a></li><li><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status (Twitter)</a></li></ul>\n\n\n\n<h3><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/ithemes\" target=\"_blank\" rel=\"noreferrer noopener sponsored nofollow\">iThemes</a></h3>\n\n\n\n<p>Take the guesswork out of building, maintaining, and securing WordPress websites. Professional plugins and training from <strong>iThemes</strong> help you create and manage your sites. Secure, back up, and manage them quickly and easily. Master leading-edge WordPress skills to grow your business and make more money. Learn and grow with the experts at <strong>iThemes</strong>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Oct 2021 03:59:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Contextually Display Content With the Block Injector Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123057\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/contextually-display-content-with-the-block-injector-plugin?utm_source=rss&utm_medium=rss&utm_campaign=contextually-display-content-with-the-block-injector-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5265:\"<p class=\"has-drop-cap\">Jamie Marsland, the founder of Pootlepress, reached out a few weeks ago, asking for feedback on a beta version of <a href=\"https://www.pootlepress.com/block-injector/\">Block Injector</a>.  It was a commercial plugin his team at Pootlepress was gearing up to launch. Earlier this week, they released an updated version that he said he was happy with as an initial release. For a first outing, it has proved to be a handy plugin.</p>\n\n\n\n<p>The concept is not new. Plugins for dynamically injecting content in various places have long existed. In the past, these plugins have allowed users to create content through settings panels, widgets, or even the customizer. Some themes provide such options too. However, Block Injector is the first I have seen that takes this concept and moves it into the block arena.</p>\n\n\n\n<p>The plugin creates a new post type for creating injectable content. Essentially, users can add any blocks they want via the editor and display them at a custom location on the front end.</p>\n\n\n\n<img />Adding a coupon to show at the top of a specific post.\n\n\n\n<p>The plugin has four different conditional rulesets that users can define:</p>\n\n\n\n<ul><li><strong>Location:</strong> Which pages of the site the content appears on.</li><li><strong>Position:</strong> Where on the page the content should display.</li><li><strong>Exceptions:</strong> Post IDs to exclude.</li><li><strong>Schedule:</strong> Date and time-based start and end dates.</li></ul>\n\n\n\n<p>Marsland published a six-minute video that breaks down how it all works:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>After <a href=\"https://wptavern.com/from-ecommerce-integration-to-location-based-controls-block-visibility-pro-expands-upon-its-free-version\">using Block Visibility</a>, a dedicated plugin for contextually displaying blocks, it is hard not to see anything else as inferior. Its location-based logic provides more flexibility than most will ever need. I have become accustomed to its granular controls. Block Injector&rsquo;s rules are limited in comparison but should work well for the majority of use cases.  I almost want to merge them to see what I can create.</p>\n\n\n\n<p>Block Injector really shines when paired with WooCommerce. The development team added several shop-specific location options.  They also expanded on the positioning rules to utilize a range of WooCommerce hooks. This can create a powerful set of tools for store owners, particularly for seasonal sales. For example, users can display a coupon for the month leading up to Christmas.</p>\n\n\n\n<img />Adding a coupon to show on the WooCommerce shop page.\n\n\n\n<p>One area where I hit a snag was with themes that had grid layouts on the homepage. When injecting content at the top or bottom, it would often get sucked into the post grid.</p>\n\n\n\n<p>This issue is evident in the following screenshot when using the <a href=\"https://wordpress.org/themes/flock\">Flock</a> theme:</p>\n\n\n\n<img />\n\n\n\n<p>My expectation was that it would have spanned the area above the posts. However, I am not sure how easy this would be to fix from the plugin&rsquo;s end because there are only specific places where it is possible to hook into the front-end output. Attempting to correct this via CSS for all grid themes would be futile. However, as we continue to move toward 100% block themes in the future, it may open some alternative routes for injecting such content.</p>\n\n\n\n<p>On the whole, I like the direction I am seeing from this first version. Having run theme and general WordPress support for over a decade, I had an untold number of users ask for similar solutions. I doubt there was a week that went by where I did not field such a question. Block Injector should save many a lot of time.</p>\n\n\n\n<p>I would call the plugin <em>necessary</em> more so than particularly groundbreaking. The community needed someone to step up and build it for the block era.</p>\n\n\n\n<p>Also, Marsland created a fake marketing video for the plugin if you are looking for a quick laugh:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Amazing to get this testimonial from Korean supergroup ELAST for our Block Injector plugin <a href=\"https://twitter.com/hashtag/wpfakes?src=hash&ref_src=twsrc%5Etfw\">#wpfakes</a> <a href=\"https://twitter.com/hashtag/gutenberg?src=hash&ref_src=twsrc%5Etfw\">#gutenberg</a> <a href=\"https://t.co/7kFdq3CzYY\">pic.twitter.com/7kFdq3CzYY</a></p>&mdash; Pootlepress &ndash; busy building Gutenberg Blocks (@pootlepress) <a href=\"https://twitter.com/pootlepress/status/1444301141551026182?ref_src=twsrc%5Etfw\">October 2, 2021</a></blockquote>\n</div>\n\n\n\n<p>That tweet is just one in a series of videos under the <a href=\"https://twitter.com/hashtag/wpfakes\">#WPFakes hashtag</a>, one of my favorite things on the internet right now.</p>\n\n\n\n<p>Version 1.0.1, the copy I am currently testing, does have a few PHP errors when WooCommerce is not active in specific scenarios. These are trivial to fix, and I have passed along the details to the team. However, I did want to note this to readers who might consider purchasing this for use without WooCommerce. I expect the problems will be fixed in the next release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Oct 2021 00:39:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Default Theme Releases May Become More Frequent Following WordPress 5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123925\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/default-theme-releases-may-become-more-frequent-following-wordpress-5-9?utm_source=rss&utm_medium=rss&utm_campaign=default-theme-releases-may-become-more-frequent-following-wordpress-5-9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3240:\"<img />photo credit: <a href=\"https://stocksnap.io/photo/birds-flying-MGGKWIS8CP\">Matt Bango</a>\n\n\n\n<p>The new <a href=\"https://wptavern.com/first-look-at-wordpress-upcoming-twenty-twenty-two-default-theme-the-most-flexible-default-theme-ever-created-for-wordpress\">Twenty Twenty-Two default theme</a> coming in 5.9 hasn&rsquo;t even been fully built yet but many WordPress enthusiasts who saw yesterday&rsquo;s design reveal are already eager to use it on their sites. Contributors have just 40 days before the <a href=\"https://make.wordpress.org/core/5-9/\">scheduled Beta 1 release</a> on November 16 to get the theme ready. While that seems like an impossibly tight deadline, more frequent default theme releases may be ahead on the horizon.</p>\n\n\n\n<p>In a couple of short paragraphs tucked into the end of the announcement, Kjell Reigstad commented on the future of default theme release frequency:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The community has produced a dozen best-in-class themes together, and we&rsquo;ve come to look forward to a new one arriving at the close of each year. That said, themes are in a transition period today, and it seems like this may be a reasonable time to step back and to re-evaluate the annual cadence with which we build default themes.&nbsp;</p><p>Innovations like theme.json, block templates, and block patterns are making theme development far simpler, and are providing new ways for users to customize their sites. There&rsquo;s reason to believe that the community can leverage all this to build more frequent and diverse theme and customization solutions for our users in the coming years.&nbsp;</p></blockquote>\n\n\n\n<p>It wasn&rsquo;t clear whether Reigstad meant that the cadence of default theme releases would be slowing down or speeding up. I asked him for clarification and he confirmed that the idea is to consider the possibility of speeding up.</p>\n\n\n\n<p>&ldquo;I hope these new tools allow us to create and release more frequently than we&rsquo;ve been able to in the past,&rdquo; Reigstad said.</p>\n\n\n\n<p>&ldquo;The general idea came up as part of the ideation process for the default theme this year, and that part of the post is meant to give it a wider platform for conversation in the community. I&rsquo;m excited to hear what other folks think since this idea is in its very early days! I really think there&rsquo;s a lot of opportunity here.&rdquo;</p>\n\n\n\n<p>&nbsp;The ideation process he referenced, which varies from year to year, included early conversations with project leadership to plan and make sure the theme is aligned with the future of WordPress. </p>\n\n\n\n<p>Before the discussion officially kicks off regarding increasing default theme release frequency, contributors are focused on getting Twenty Twenty-Two out the door. Reigstad said people can jump in on testing now, as the general structure is already in place. This includes fonts, colors, and basic templates, although details like spacing and specific block styles are still in progress along with block patterns. If you want to contribute to making Twenty Twenty-Two the best it can be, check out the <a href=\"https://github.com/wordpress/twentytwentytwo\">development happening on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Oct 2021 20:14:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: The HeroPress Network Launches as a Multi-Project Portal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123904\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/the-heropress-network-launches-as-a-multi-project-portal?utm_source=rss&utm_medium=rss&utm_campaign=the-heropress-network-launches-as-a-multi-project-portal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5911:\"<p class=\"has-drop-cap\">Husband-and-wife duo Topher and Cate DeRosia announced the <a href=\"https://heropressnetwork.com/heropress-expands-into-the-heropress-network/\">launch of the The HeroPress Network</a> earlier today. It is a collection of content from various sites they are working on in a centralized location.</p>\n\n\n\n<p>&ldquo;Its overarching goal is to be a hub,&rdquo; said Cate DeRosia. &ldquo;It will display the newest items from around the HeroPress Network, as well as news from the community (to be added in shortly). We can also post information that we think is helpful or educational.&rdquo;</p>\n\n\n\n<p>The &ldquo;hub&rdquo; will incorporate content from at least eight projects:</p>\n\n\n\n<ul><li><a href=\"https://heropressnetwork.com/\">The HeroPress Network</a></li><li><a href=\"https://heropress.com/\">HeroPress</a></li><li><a href=\"http://www.hallwaychats.com/\">Hallway Chats</a></li><li><a href=\"https://wppodcasts.com/\">WP Podcasts</a></li><li><a href=\"http://www.finditwp.com/\">Find It WP</a></li><li>Slack group</li><li>+2 additional projects in production</li></ul>\n\n\n\n<p>The team launched WP Podcasts two weeks ago, making over 7,000 current episodes from dozens of WordPress shows available in one place. Find It WP is currently in beta and will be the next project to launch on or before October 19.  They will soon launch the public Slack group with dedicated channels for different types of professionals.</p>\n\n\n\n<img />The HeroPress Network homepage.\n\n\n\n<p>&ldquo;You could say it&rsquo;s like the portals of yesteryear,&rdquo; said DeRosia. &ldquo;With HeroPress expanding into 8+ or more entities, we wanted one place for people to go and get the most current glimpse of what&rsquo;s happening.&rdquo;</p>\n\n\n\n<p>She also teased the idea of expanding their educational offerings in the announcement post. However, news on that will have to wait until they build out the projects currently underway.</p>\n\n\n\n<p>The team will open funding options on October 24.  The HeroPress Network is a for-profit company, but its goal is to make all of its content available for free to the community as a whole.</p>\n\n\n\n<p>The original HeroPress.com website <a href=\"https://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline\">did not hit its funding goal</a> in 2015. It attracted 33 backers who pledged $21,855 of its $60,000 AUD goal on Kickstarter. There was <a href=\"https://wptavern.com/heropress-launches-kickstarter-campaign-to-highlight-wordpress-developers\">some early pushback</a>, particularly from WordPress lead developer Andrew Nacin <a href=\"https://twitter.com/nacin/status/558347928977145856?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E558347928977145856%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Fwptavern.com%2Fheropress-launches-kickstarter-campaign-to-highlight-wordpress-developers\">who cited</a> its &ldquo;unambiguous hero worship&rdquo; and the initial male-only lineup of speakers as problems. However, much has changed in the six years since the fundraiser.</p>\n\n\n\n<p>DeRosia called the first fundraising event a test to see how the community would receive it. The project has never been funded financially since then. Hosting and resources have been provided for the project, and a few other companies have occasionally donated toward their time and tools.</p>\n\n\n\n<p>Despite failing to raise their initial funds, the project continued onward. Today, HeroPress has been a success by simply providing a platform for people to share their journeys in the WordPress world.</p>\n\n\n\n<p>Andrey &ldquo;Rarst&rdquo; Savchenko wrote the <a href=\"https://heropress.com/essays/finding-your-place/\">first essay</a> in March 2015. Since then, the site has published over 200 others.</p>\n\n\n\n<p>&ldquo;It&rsquo;s always been a challenge to figure out how to fund the project,&rdquo; said DeRosia. &ldquo;When the pandemic hit and sponsors had money they couldn&rsquo;t use on WordCamps, they started some conversations with us. We&rsquo;ve been kicking around ideas since then and feel The HeroPress Network gives us the best resource for reasonable funding. We want to be giving value back to both the community and supporters, and the diversity of what makes up the Network provides more options.&rdquo;</p>\n\n\n\n<p>If everything falls into place, DeRosia herself or one of their daughters could have a salaried position for the project. Her background is in English and journalism, and she described it as a &ldquo;dream job.&rdquo;</p>\n\n\n\n<p>I asked DeRosia why she was personally vested in this project. What was it that got her up every morning to build it?</p>\n\n\n\n<p>&ldquo;Topher and I both grew up rural poor here in the US,&rdquo; she said. &ldquo;We come from communities dying because there aren&rsquo;t jobs. WordPress has always been such an excellent answer to this.</p>\n\n\n\n<p>&ldquo;With HeroPress.com we&rsquo;re able to provide a stage where people can tell their stories of how they&rsquo;ve built their lives regardless of where they lived or what circumstances they were living in. That&rsquo;s great, but it only goes so far.</p>\n\n\n\n<p>&ldquo;Now with The HeroPress Network, we can provide simplified, searchable access to practical tools that anyone can use to craft the life they want using the WordPress platform. We can also demonstrate how community and business can work together to get the best for both.</p>\n\n\n\n<p>&ldquo;If the option for something better is out there, I want to help people find it. Helping new people get started in WordPress brings a richness to the community that it needs to thrive. Helping established businesses connect with people and resources continues the growth.</p>\n\n\n\n<p>&ldquo;It&rsquo;s just so incredible to have the privilege to see people build relationships that allow them to flourish. And who wouldn&rsquo;t get out of bed every morning to do that?&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Oct 2021 23:44:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"WPTavern: First Look at WordPress’ Upcoming Twenty Twenty-Two Default Theme: “The Most Flexible Default Theme Ever Created for WordPress”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123061\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:311:\"https://wptavern.com/first-look-at-wordpress-upcoming-twenty-twenty-two-default-theme-the-most-flexible-default-theme-ever-created-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=first-look-at-wordpress-upcoming-twenty-twenty-two-default-theme-the-most-flexible-default-theme-ever-created-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4220:\"<p><a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">Twenty Twenty-Two</a>, the new default theme coming in WordPress 5.9, was unveiled today on WordPress.org. The design goes full steam ahead in support of full site editing and new customization capabilities.</p>\n\n\n\n<p>Like its predecessor, <a href=\"https://make.wordpress.org/core/2020/09/23/introducing-twenty-twenty-one/\">Twenty Twenty-One</a>, the new default theme makes some bold design choices wrapped around a central theme. In this case it&rsquo;s bird illustrations, complemented by <a href=\"https://adobe-fonts.github.io/source-serif\">Source Serif Pro</a>&nbsp;for headlines, and a <a href=\"https://make.wordpress.org/core/files/2021/10/Example-Layouts-scaled.jpg\">delicious array of patterns</a> for limitless combinations.</p>\n\n\n\n<img />Image Credit: <a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">Introducing Twenty Twenty-Two</a>\n\n\n\n<p>The theme will be <a href=\"https://github.com/wordpress/twentytwentytwo\">developed on GitHub</a> until it&rsquo;s ready to be merged into core. Kjell Reigstad, an Automattic sponsored full-time design contributor to WordPress.org, is leading the design with Jeff Ong leading development. In the announcement he sets expectations high for users to be able to make the theme their own.</p>\n\n\n\n<p>&ldquo;With the advent of Full Site Editing and Global Styles, themes are changing structurally and functionally to enable far more avenues for customization than users have come to expect in the past,&rdquo; Reigstad said. &ldquo;To take advantage of these new abilities, <strong>Twenty Twenty-Two has been designed to be the most flexible default theme ever created for WordPress.</strong>&rdquo;&nbsp;&nbsp;</p>\n\n\n\n<p>In addition to the wide variety of patterns expected to ship with this theme, Twenty Twenty-Two will offer a lively selection of six pre-designed color palettes. Reigstad shared a video preview of how they instantly change the character of the theme. (see below) Combine this with the promise of being able to manipulate every aspect of the theme&rsquo;s appearance through global styles, and users are in for a treat with WordPress 5.9.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>&ldquo;Twenty Twenty-Two will take advantage of a wide&nbsp;network&nbsp;of page templates, headers, footers, and other patterns so that users can easily make the theme their own,&rdquo; Reigstad said. &ldquo;In another nod to the behavior of birds everywhere, these will offer a balance between fun and utility: some are irregular and unpredictable, while others are straightforward and traditional. Together, these patterns will act as a window into all of the possibilities that the theme enables.&rdquo;</p>\n\n\n\n<p>The design preview for Twenty Twenty-Two has received overwhelming positive <a href=\"https://twitter.com/search?q=https%3A%2F%2Fmake.wordpress.org%2Fcore%2F2021%2F10%2F06%2Fintroducing-twenty-twenty-two%2F&src=typed_query\">feedback on Twitter</a> and in the comments of the <a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">announcement</a>. Many users were excited to see a default theme that can be quickly transformed for so many applications. Too many default themes have only been applicable to a narrow set of use cases. In the past, users had little hope of being able to change things around to make the design work for their needs. Unrelenting progress on the block editor and full site editing has made it possible for Twenty Twenty-Two to become the most user-empowering default theme in WordPress&rsquo; history.</p>\n\n\n\n<p>Reigstad said the theme will be &ldquo;built for Full Site Editing first,&rdquo; with as little CSS as possible, and all theme styles configurable through theme.json wherever possible, so users can edit them through Global Styles.</p>\n\n\n\n<p>&ldquo;Twenty Twenty-Two is designed with the acknowledgement that its default appearance is not most people&rsquo;s endpoint,&rdquo; Reigstad said. &ldquo;Everyone deserves a truly unique website, built on a solid, well-designed foundation, and Twenty Twenty-Two aims to help them achieve that.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Oct 2021 20:59:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"HeroPress: What’s Next For HeroPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=4162\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://heropress.com/whats-next-for-heropress/#utm_source=rss&utm_medium=rss&utm_campaign=whats-next-for-heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4748:\"<img width=\"1024\" height=\"685\" src=\"https://heropress.com/wp-content/uploads/2022/10/nikola-jovanovic-OBok3F8buKY-unsplash-1024x685.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Closeup of a woman\'s hands holding a double handful of dirt with a green plant growing out of it.\" /><p>For years now people have been asking me &#8220;So what&#8217;s next for HeroPress?&#8221; and I didn&#8217;t have a good answer. I was content to let it just be inspirational essays forever. But as the years went by, I began to feel more and more that I wanted to go one step further, and start providing resources to those newly inspired people. Some direction, now that they&#8217;re convinced they that too can Do It.</p>\n<p>About a year ago my wife <a href=\"https://twitter.com/mysweetcate\">Cate</a> asked, &#8220;What if we were able to fund this, so I could take on the HeroPress work as my full time job? Then, we could start doing a lot more.&#8221; And thus began a series of conversations that still hasn&#8217;t ended.</p>\n<p>We didn&#8217;t want to ask people to help financially without offering them something more in return, so we started brain storming about what we could make that people would value. We came up with MANY ideas which we didn&#8217;t follow up on, but we also came up with some GREAT ones that we <em>did</em> do.</p>\n<h3>Great Ideas We&#8217;ve Acted On</h3>\n<p>Last week we released <a href=\"https://wppodcasts.com\">WP Podcasts</a>, which aggregates all the episodes from all the WordPress podcasts we can find, so you can search by keyword or tag and find individual episodes across all of them.  For playback and subscription we direct you back to the original site, driving traffic back to the podcaster.</p>\n<p>You probably already know about <a href=\"https://hallwaychats.com\">Hallway Chats</a>, and then there&#8217;s <a href=\"https://heropress.com/\">this site</a> (HeroPress.com).</p>\n<p>Soon we’ll be releasing Find It WP (think Yahoo for WordPress), a curated listing of everything in WordPress. A curated listing of everything in WordPress.  Every podcast, every email newsletter, every dev agency, every theme shop, and on forever. If it&#8217;s WordPress, it&#8217;ll be in there, assuming they choose to sign up. There are a couple more sites in the hopper as well, but I&#8217;ll tell you more about them another day.</p>\n<h3>Today&#8217;s Announcement</h3>\n<p>TODAY I&#8217;m excited to announce the next new thing for HeroPress: <a href=\"https://heropressnetwork.com\">The HeroPress Network</a>. This is a site that serves several purposes.</p>\n<ul>\n<li>To aggregate everything from all of the HeroPress properties into one site, the latest essay, Hallway Chat, WordPress Podcast episode, new thing on Find It WP, etc.</li>\n<li>A community news blog. Think People magazine, but less smarmy.</li>\n<li>A platform for video and text tutorials and training produced by the HeroPress team. You can go <a href=\"https://heropressnetwork.com/video/saving-a-wordpress-search-as-rss/\">see the first WordPress Tip Of The Week right here</a>!</li>\n</ul>\n<h3>Future Needs</h3>\n<p>As you can see, with what we have going on now plus what we have planned, we have MORE than enough work for a full time employee.</p>\n<p>For this reason, on October 24th 2021 we&#8217;re going to open up funding opportunities.</p>\n<p>This isn&#8217;t an Event with a goal and a thermometer to track funds received, or balloons and a band. This is going to be more like a Patreon, where we&#8217;re looking for people who are willing to support the project long term. Don&#8217;t get me wrong, we won&#8217;t turn down one-time help, but if this is going to grow it needs long term support.</p>\n<p>On the technical side of funding, we&#8217;re choosing to use <a href=\"https://givewp.com\">GiveWP</a> instead of Patreon for a few important reasons.</p>\n<ol>\n<li>We&#8217;re all in on the WordPress ecosystem. We want to show that it can be done, and done well, in WordPress.</li>\n<li>Another is the old story of owning your platform. We don&#8217;t want to depend on other sites if we don&#8217;t have to. We&#8217;re going to have to write some code to make GiveWP work like Patreon, but that just means we&#8217;ll have one more thing to give back to the community.</li>\n</ol>\n<p>It&#8217;s been nearly seven years since HeroPress started, and I&#8217;m excited to see it blossom into something even greater.</p>\n<p><span class=\"_1K5LX _1ByhS\">Photo by <a href=\"https://unsplash.com/@danteov_seen?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Nikola Jovanovic</a> on <a href=\"https://unsplash.com/s/photos/growing?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a> </span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Oct 2021 20:07:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: WordCamp US 2021 Draws More Than 3600 Attendees\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123714\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://wptavern.com/wordcamp-us-2021-draws-more-than-3600-attendees?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-us-2021-draws-more-than-3600-attendees\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4687:\"<p><a href=\"https://us.wordcamp.org/2021/\">WordCamp US</a> took place online last Friday. Organizers pulled off a successful one-day event with an engaging group of speakers who highlighted timely and important topics. There were 3,608 people registered for the event and the livestream had as many as 400 concurrent viewers at a time.</p>\n\n\n\n<p>&ldquo;Online events are notoriously difficult to get attendee stats for, particularly an event like WCUS 2021 where the audience is global and spans so many time zones,&rdquo; WCUS organizer Cate DeRosia said. &ldquo;Many people will watch what they can and catch the rest in their own time.</p>\n\n\n\n<p>&ldquo;We really love this as it makes for not only a more accessible event, but a more educational experience as it&rsquo;s so easy to rewatch a session as many times as an individual needs.&rdquo;</p>\n\n\n\n<p>When <a href=\"https://twitter.com/jati/status/1443978800010711045\">asked on Twitter</a> why the event&rsquo;s organizers didn&rsquo;t opt to use a more interactive event platform like Hopin or Veertly, organizer Jen Swisher said some of the platforms they looked into had accessibility issues or prohibitive costs. </p>\n\n\n\n<p>As part of the leadership trio for WCUS, Swisher said the team had three issues they focused on when choosing a virtual venue: cost, accessibility, and time for implementation.</p>\n\n\n\n<p>&ldquo;We had a $30K budget,&rdquo; Swisher said. &ldquo;To use one of these platforms would have doubled it minimum. There was also a strong chance we would have faced additional costs from our production company for our resources through them to learn this new platform and connect it with their equipment.</p>\n\n\n\n<p>&ldquo;This would have resulted in additional time and resources spent on fundraising or increasing the costs of our sponsor packages. This would have forced the volunteers on the sponsors team to do twice as much work to get the sponsorship necessary to fund other platforms.&rdquo;</p>\n\n\n\n<p>Even with the simple setup of two YouTube livestreams, organizers provided a high energy, welcoming reception to attendees. They managed to bring some levity during these challenging times apart from one another. Swisher highlighted a few deliberate choices organizers made to give this year&rsquo;s event a more lightweight feeling:</p>\n\n\n\n<p>&ldquo;We didn&rsquo;t try to replicate the in person experience,&rdquo; she said. &ldquo;Making the choice to actively recognize that this isn&rsquo;t like in person events in any way gave everyone permission to think about this event differently. By throwing out &lsquo;the book,&rsquo; and starting from scratch, we were able to really &lsquo;dream&rsquo; for the event, instead of what it could have been.&rdquo;</p>\n\n\n\n<p>Instead of planning a big multi-day event, organizers opted for a single day focusing on a smaller subset of topics. They also selected chat moderators and emcees that would bring enthusiasm to the event and gave them the autonomy to make decisions on the fly.</p>\n\n\n\n<p>&ldquo;The team agreed that a big event with multiple days and large numbers of tracks would be exhausting to plan and exhausting for attendees to sit through,&rdquo; Swisher said. </p>\n\n\n\n<p>After <a href=\"https://wptavern.com/wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue\">WordCamp US 2020 was cancelled</a> due to pandemic stress and online event fatigue, the organizing team needed to make some changes to avoid the pitfalls of the previous year. Organizers were drained, spread thin, and frustrated by delayed tasks and external stressors. The WCUS 2021 team turned this around to make it a more healthy culture for volunteers. </p>\n\n\n\n<p>&ldquo;We fostered an atmosphere where stepping back to take care of yourself was strongly encouraged,&rdquo; Swisher said. &ldquo;This resulted in a team of folks that was well rested and able to handle the extra responsibility that comes with planning a WordCamp.&rdquo;</p>\n\n\n\n<p>&ldquo;We gave the teams the autonomy necessary to get their work done. Decision making was done democratically, but decisions that didn&rsquo;t impact the whole team didn&rsquo;t involve the whole team, making it possible to move more agilely.&rdquo;</p>\n\n\n\n<p>The speaker selection was outstanding this year and the recorded sessions will soon be available on <a href=\"https://wordpress.tv/\">WordPress.tv</a> after the production team finishes uploading them. In the meantime, if you are eager to watch or re-watch sessions now, one attendee, Marcus Burnette, has published a post with <a href=\"https://mburnette.com/blog/wordcamp-us-2021/\">direct links to session recordings</a> from the livestream.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Oct 2021 15:29:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: #8 – Lee Shadle on How Blocks Create New Opportunities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=123863\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/podcast/8-lee-shadle-on-how-blocks-create-new-opportunities?utm_source=rss&utm_medium=rss&utm_campaign=8-lee-shadle-on-how-blocks-create-new-opportunities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54420:\"<h2>About this episode.</h2>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/leeshadle/\">Lee Shadle</a>.</p>\n\n\n\n<p>Lee is a WordPress developer at <a href=\"https://wpdraft.com/\">WP Draft</a>, and by his own admission is obsessed with building block based themes, plugins and websites. He&rsquo;s been using WordPress for many years and as soon as the Gutenberg project was announced, he decided he was going to explore it and learn how it worked.</p>\n\n\n\n<p>He runs a small agency building sites with blocks as well as with 3rd party page builders.</p>\n\n\n\n<p>I first saw Lee when he presented at WordCamp Europe earlier in 2021, and his passion for working with blocks and React was obvious. It&rsquo;s pretty clear that, right from the start, he&rsquo;s embraced the possibilities that blocks offer, both now and in the future.</p>\n\n\n\n<p>At the time of recording this podcast, many are still unsure about what blocks are for, and what they will be able to do down the road, but Lee has thrown himself into figuring out what&rsquo;s possible, and it might come as a surprise just how powerful they are.</p>\n\n\n\n<p>We start our conversation by addressing whether Gutenberg was something that the WordPress project actually needed. Was it necessary to build a new tool which would require people to learn new skills and new techniques?</p>\n\n\n\n<p>We then get into some concrete examples of how blocks will add new capabilities to websites. Some of the examples show that complex operations can be handled within single blocks. These possibilities were once the domain of plugins and shortcodes, and now they can be deployed and configured by anyone who edits content.</p>\n\n\n\n<p>We talk about the obstacles which Lee encountered whilst learning how to build blocks. In his case, he worked on projects which he knew he would enjoy. We also touch upon some resources he used to assist in his learning.</p>\n\n\n\n<p>There&rsquo;s also a discussion about the commercial landscape for block developers and how blocks might become a new way of generating revenue. Although we&rsquo;re not there yet, it might well be that in the future, WordPress users will be on the lookout to purchase blocks in the same way that they now buy plugins and themes. Perhaps there&rsquo;s even scope for a market of inexpensive blocks which have limited functionality.</p>\n\n\n\n<p>As you&rsquo;ll hear, Lee is very optimistic about the future of WordPress, with blocks at it&rsquo;s core.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://twitter.com/leeshadle\">Lee&rsquo;s Twitter account</a></p>\n\n\n\n<p><a href=\"https://stimulusbenefits.com/\">Stimulus Benefits</a> &ndash; Lee&rsquo;s calculator block</p>\n\n\n\n<p><a href=\"https://wpaino.com/\">Aino</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/block-visibility/\">Block Visibility</a></p>\n\n\n\n<p><a href=\"https://newsletterglue.com/\">Newsletter Glue</a></p>\n\n\n\n<p><a href=\"https://reactforbeginners.com/\">React for beginners</a></p>\n\n\n\n<p><a href=\"https://generateblocks.com/\">GenerateBlocks</a></p>\n\n\n\n<p><a href=\"https://www.nickdiego.com/\">Nick Diego</a></p>\n\n\n\n<p><a href=\"https://mikeoliver.me/\">Mike Oliver</a></p>\n\n\n\n<p><a href=\"https://briangardner.com/\">Brian Gardner</a></p>\n\n\nTranscript<div><div class=\"chat-transcript\"><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:00:00]</div> <div class=\"chat-text\"><p>Welcome to the eighth edition of the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the themes, and the blocks. Every month, we&rsquo;re bringing you someone from that community to discuss a topic of current interest.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>If you like the podcast, please share it with your friends. And you might also like to think about subscribing, so that you can get all of the episodes in your podcast player automatically. You can do that by searching for WP Tavern in your podcast player, or by going to WP tavern dot com forward slash feed forward slash podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>You can also play the podcast episodes on the WP Tavern website, if you prefer that approach. If you have any thoughts about this podcast, perhaps suggestion of a guest or an interesting subject, then do head over to WP tavern dot com forward slash contact forward slash jukebox and use the form there. And we would certainly welcome your input.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Okay, so on the podcast today, we have Lee Shadle. Lee is a WordPress developer at WP Draft, and by his own admission is obsessed with building block-based themes, plugins, and websites. He&rsquo;s been using WordPress for many years, and as soon as the Gutenberg project was announced, he decided he was going to explore it and learn how it worked.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>He runs a small agency building sites with blocks, as well as third party page builders. I first saw Lee when he presented at WordCamp Europe earlier in 2021. And his passion for working with blocks and react was obvious. It was pretty clear, right from the start, he&rsquo;s embraced the possibilities that blocks offer both now and in the future. At the time of recording this podcast, many are still unsure about what blocks are for and what they will be able to do down the road. But Lee has thrown himself into figuring out what&rsquo;s possible and it might come as a surprise to you just how powerful.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We start our conversation by addressing whether Gutenberg was something that the WordPress project actually needed. Was it necessary to build a new tool, which would require people to learn new skills and new techniques.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We then get into some concrete examples of how blocks will add new capabilities to websites. Some of the examples show that complex operations can be handled within single blocks. These possibilities were once the domain of plugins and shortcodes, and now they can be deployed and configured by anyone who edits content.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We talk about the obstacles which Lee encountered whilst learning how to build blocks. In his case, he worked on projects, which he knew that he would enjoy. We also touch upon some resources, used to assist him in his learning.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>There&rsquo;s also a discussion about the commercial landscape for block developers and how blocks might become a new way of generating revenue. Although we&rsquo;re not there yet, it might well be that in the future, WordPress users will be on the lookout to purchase blocks in the same way that they now buy plugins and themes. Perhaps there&rsquo;s even scope for a market of inexpensive blocks, which have limited functionality.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>As you&rsquo;ll hear Lee is very optimistic about the future of WordPress with blocks at its core.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>If any of the points raised in this podcast, resonate with you, be sure to head over and find the post at wptavern dot com forward slash podcast, and perhaps leave us a comment there.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>And so without further delay, I bring. Lee Shadle.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I am joined on the podcast today by Lee Shadle. Hello Lee.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:04:16]</div> <div class=\"chat-text\"><p>Hey Nathan.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:04:17]</div> <div class=\"chat-text\"><p>It&rsquo;s lovely to have you on the podcast today. Before we get stuck into it, I&rsquo;ll ask the traditional set of mandatory questions at the start. Would you mind telling us a little bit about yourself, your background in WordPress, technology? You can go back as far as you feel necessary. Probably limit it to the WordPress side of things.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:04:35]</div> <div class=\"chat-text\"><p>Okay. So I was born in Columbus, Ohio, but I shouldn&rsquo;t go back to Ohio days. Huh? I shouldn&rsquo;t go back all the way back to my birth. So I am a self-taught developer, mostly front end developer, and I&rsquo;ve been doing it for about 10 years. I started building custom client sites and I made my way to WordPress about five years ago. And really, the thing that actually really drew me in was when Gutenberg launched, because it really used all my skillsets of JavaScript, React, CSS. And so since then, I&rsquo;ve been really the last five years or so been focused on building blocks. I kind of nonstop, but kind of had an insane obsession with it. You could ask my wife, all I do is talk about blocks and building blocks. So to pay the bills, I&rsquo;ve been building client sites and I&rsquo;ve been trying to build tools with blocks to help streamline my processes of the client work. So that&rsquo;s what brings me here today. Is that black building obsession.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:05:39]</div> <div class=\"chat-text\"><p>Very nice. Well, we will get thoroughly immersed in all of that in a little while. Just before that, I wanted to know what your thoughts are on whether or not WordPress needed to put this into core, the ability to build your website now let&rsquo;s say, but initially, to create your content around blocks. Did you feel at the time, obviously subsequently you&rsquo;ve gotten into it and been enjoying what it has brought to the table, but I&rsquo;m wondering if you can cast your mind back to that time when it did come in. Was there a light that went off and you thought, actually this is tremendously interesting or were you like many people were, and to some extent still are kind of reluctant to use it and keen to have the old editor back or move away to some sort of proprietary page builder?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:06:25]</div> <div class=\"chat-text\"><p>Being a front end developer, when I started hearing about React being in WordPress, that really got me going, because to me, it really opens up a bunch of possibilities that can really allow you to build, you know, really snappy interfaces and really fun products and stuff that you couldn&rsquo;t build before.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>You can almost, I know there&rsquo;s been talk about WordPress being the OS of the internet. And I think it really opens up that possibility. I started dipping my toes into WordPress right before Gutenberg launched. And I did a deep dive into building themes and plugins the old way. And then right about a year into me learning how to do that, I started diving deep into Gutenberg. And, I definitely think it was a good move. Although all change, you know, change can sometimes be painful and there&rsquo;s definitely a steep learning curve, but I think the pain is going to be worth it in the long run.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:07:29]</div> <div class=\"chat-text\"><p>I feel that at the moment, there is a lot of pain being experienced by a variety of different people. And some people like yourself have decided to absorb that pain and go with it. Other people have found it very difficult and there&rsquo;s been politics, shall we say has crept into WordPress in a way that I&rsquo;ve not really seen too much of before, and people wishing that it hadn&rsquo;t have been put into core and that it had of been a plugin instead. Other people obviously just wished that the entire thing would go away and ended up forking WordPress and creating this ClassicPress version of WordPress. So it has really divided the community. I feel that maybe talks like this, will address that a little bit because you&rsquo;ve obviously been exploring it and you&rsquo;ve probably got some great ideas about things that it will enable that perhaps the rest of us haven&rsquo;t really foreseen.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I know for my part, I&rsquo;ve seen a few videos of things that people are building. Products that are either just about to come out or have already come out and you just think, okay, that&rsquo;s interesting because that&rsquo;s totally wedded to the idea of a block and without the block methodology, that exact thing could not have been done, possibly even as a plugin. So I&rsquo;m just curious if you&rsquo;ve got any thoughts about what can be done with blocks that we could not have done before.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:08:44]</div> <div class=\"chat-text\"><p>I&rsquo;m going to go as a bold as to say, I think, think of every traditional plugin or theme business in WordPress. I believe with the advent of Gutenberg, everything is ripe for disruption.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think every single aspect, like think about forms or think about pop-ups or think about payments. Really any facet of the WordPress economy that you can think of, that people are making a living on, I think it could be disrupted with Gutenberg.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:09:15]</div> <div class=\"chat-text\"><p>Yeah. I think you&rsquo;re probably right. We&rsquo;ve certainly seen some . Of those things. I&rsquo;ve seen some projects certainly around the forms space where, you know, you just think, oh, well the interface of Gutenberg really does lend itself to creating sort of drag and drop form builder. It&rsquo;s really remarkable for that. Aside from those sort of more general ideas, do you have any concrete examples of things that you&rsquo;ve gotten yourself into and projects that you&rsquo;ve created, or been party to where there&rsquo;s been an end result that we could all identify with and understand why you&rsquo;re so excited about it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:09:46]</div> <div class=\"chat-text\"><p>I&rsquo;ve been building blocks, all kinds of different types of blocks, trying to uncover. I run a small agency, so my workflow and system of building a site for client is super important to me. And I know there are a ton of tools with the classic way of building WordPress built around optimizing that workflow. But that&rsquo;s really been my focus is how do we leverage the system to really like streamline the workflow of building sites for clients? I build a lot of sites for fun for myself. Really. I&rsquo;m all about building quickly.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I don&rsquo;t know if I told you this Nathan, but when I was in my previous life, I used to own a restaurant and I came up with, you know, the menu and the food, and imagine it was an Italian version of Chipotle at the early days of Chipotle, and, you know, I ran it for a couple years and it just failed miserably. I lost, I kind of lost everything in that. But I learned a lot of great lessons and one of those lessons was I want to be able to keep stepping up to the plate. And in order to do that, to keep trying, I needed to come up with systems and processes that allow me to do that in a way that it isn&rsquo;t heavy handed. And I can just hack away at an idea in a day. And I kinda think that is the essence of WordPress. And I think that Gutenberg is kind of taken us back to that essence of, okay, what can I hack away at? I think we&rsquo;re just starting to hit the point of stability with Gutenberg and with full site editing coming out and block-based themes where you&rsquo;re going to be able to build full blown prototypes and mock-ups of, you know, not just like static sites, but some pretty complex stuff pretty quickly. Imagine launching, you know, I don&rsquo;t know if you saw Flip WP, they&rsquo;re launching a marketplace for selling WordPress plugins and themes and WordPress businesses. I think something like that is going to become a lot easier to do. Like iterating on an idea like Flip WP, like say I want to try it, test the waters of building a marketplace for buying and selling WordPress businesses. I think, being able to build startups and more complex businesses is going to become a lot easier to do with Gutenberg</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:12:10]</div> <div class=\"chat-text\"><p>When you&rsquo;ve been creating your blocks at the beginning, I&rsquo;m just curious as to how obviously you fell into it and you&rsquo;re now enjoying it. Were there any significant obstacles along the way that you encountered? So as an example, was there enough documentation? Was it fairly easy to get yourself up to speed with how to create your own blocks? Was there a lot of support around? Were there some channels or books that you perhaps ended up relying upon? I&rsquo;m just trying to get to the idea of how easy or difficult it was, or perhaps still is.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:12:39]</div> <div class=\"chat-text\"><p>I&rsquo;ll be honest with you. It&rsquo;s been a challenge. It&rsquo;s been a frustrating journey. There&rsquo;s been documentation and there&rsquo;s been the Gutenberg GitHub repo has been a great resource for, learning as well. Just seeing how they&rsquo;re doing things, but it hasn&rsquo;t been easy. I actually, you know, a tool. I think you actually heard me talking about it at wpplugin dot com where you can quickly generate a block plugin. And the idea behind that is there&rsquo;s all these different mental models of building a block. I think the hardest part is learning, what can you do with a block? How can you do it? And shaping that mental model has really been a challenge. Honestly, I&rsquo;ve been very self driven and if it wasn&rsquo;t for that, that really has kept me going. I&rsquo;ve had a long-term view of where everything&rsquo;s going and from the place I&rsquo;m coming from being a front end developer, it&rsquo;s really made it, it has made it easier for me. I do think, if somebody really wants to learn blocks, they need to learn React. And I think something like taking like Wes Bos&rsquo;s React for beginners course, I took that course and it&rsquo;s a great resource for learning React. Just getting kind of the nuts and bolts of, you know, the underpinnings of Gutenberg.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:14:00]</div> <div class=\"chat-text\"><p>Would you say that, obviously it was fairly difficult as you&rsquo;ve described, but were you able to begin to see a glimmer of light at the end of the tunnel fairly quickly? Or was it one of these learning journeys where it&rsquo;s more of a cliff climb until finally you reach the pinnacle? You&rsquo;ve acquired enough knowledge that suddenly it becomes, oh, I can do it all now. This is fabulous. Or were you able to get something out from your limited learning?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:14:24]</div> <div class=\"chat-text\"><p>I feel like I&rsquo;m there now. I&rsquo;m at that place. I mean, I&rsquo;m still learning, but I feel like I&rsquo;m at a point now where I can kind of shape the editor to what my vision is. But it has been a lot of hard work, but I&rsquo;ve, I feel like I&rsquo;ve kind of seen the vision for where WordPress wants to go for a long time. It really resonated with me and I can really get behind where they ultimately want to go. I think that all of this, it&rsquo;s going to be worthwhile taking the time to really dig in and learn. And I don&rsquo;t know if you&rsquo;ve seen it, there&rsquo;s been some talk about creating. I know there&rsquo;s like Advanced Custom Fields has a block builder. There&rsquo;s been some talk about creating some PHP based tools for building blocks. I&rsquo;m not sure it might be a third-party. It&rsquo;s just a, some conversation I saw on Twitter there quite an extensive conversation about people testing out ways to build blocks from a more PHP standpoint, where the PHP would kind of generate the React for you. And so like this layer between, okay, we have Advanced Custom Fields for doing 80% of what you want to do. And then this other PHP solution potentially being like a similar tool that gets you most of the way there. If you really want to dive deep and do some more complex stuff, take you the rest of the 20% of the way, then you&rsquo;d really need to learn React and how it works in the editor.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:15:46]</div> <div class=\"chat-text\"><p>I feel maybe this is the point at which people who are struggling with the way things are going in WordPress at the moment. Maybe this is the point of contention, it was introduced and suddenly all of the skills and the techniques and, the years and years of expertise that they built up, it kind of felt like it was crumbling before their eyes. And they may be in a position where they&rsquo;re managing to carry on their business, whatever it is, something to do with WordPress, their agency, or what have you. And simply don&rsquo;t have the time to upskill and to learn new things. And maybe that&rsquo;s the problem is that there&rsquo;s a lot of people out there who simply don&rsquo;t have the time. They don&rsquo;t have the energy anymore. They don&rsquo;t have the desire. And they want to just sort of keep going with the same tools that they&rsquo;ve been using for a such a long time. Obviously it sounds like you, fairly driven, able to allocate enough time to do all of that and obviously fit it in around your business. But maybe there&rsquo;s, maybe there&rsquo;s some people for whom that is just too much of a stretch?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:16:41]</div> <div class=\"chat-text\"><p>You know, I can understand if all of a sudden Gutenberg was pulled out from under me, I think I&rsquo;d throw my hands up right now. Uh, I&rsquo;ve had a business, I was working on, pulled out from under me and I, it hurts. And it&rsquo;s like, ah, dude, you know, do I want to do I want to keep going? But, but here&rsquo;s the thing is I think Gutenberg is getting to the point where, we&rsquo;re hitting a stability that could be used in production for like client sites. I think we&rsquo;re hitting that point right now. Once Full Site Editing, I think after the next release. I&rsquo;ve started building, I&rsquo;ve kind of been doing both the old way of doing things for some clients and the new way of doing things. I&rsquo;ve been doing it simultaneously to see, okay, how stable are we for using this stuff in production versus using something like Elementor page builder or Beaver Builder or something like that?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think we&rsquo;re coming up on that point where people can start making the switch and dipping their toes in. And I don&rsquo;t think you have to focus a hundred percent of your time or focus a big chunk of your time to start diving into that. The new block-based themes, it uses this thing called a theme bot json file and that really sets up. You just fill out this file, like basically a data structure with what you want and you have a full flesh theme in the block editor. I think that the tools and the tooling and WordPress and Gutenberg itself are all getting to this point where we can start using it, and it&rsquo;s not going to be a ton of time. And then once you start using these tools, You&rsquo;re going to want to start doing more and more with them, and you can start easing your way into building blocks with ACF or from scratch or whatever.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:18:33]</div> <div class=\"chat-text\"><p>It seems to me that it might be the case that many people who have not really dabbled too much in the block editor have gone in there at some point, installed vanilla version of WordPress, made sure that it was all up and running and what have you, and then when in, started typing and found that experience fairly decent, certainly from my part, it&rsquo;s much better for simply typing things than the classic editor ever was. Just for the ability to move paragraphs and things around. And then of course you notice this sort of curious sidebar, which is full of these blocks that you can put on to the page, and so, a paragraph is a block. A button is a block. A heading is a block. And so it kind of feels a bit like this text interface where the blocks are a bit like, okay, obviously I&rsquo;m using paragraphs now. That&rsquo;s fine. I can understand that. But then you sort of notice that there&rsquo;s a lot of stuff attached to the block and the block brings along with it, all these different settings. And so you can modify that one paragraph in its entirety, all in one, go by clicking some buttons, you know, that might be the color or what have you. And all of a sudden, your mind starts getting taken over with, oh, so the block has got settings with it. Oh, that&rsquo;s interesting. Okay. So what I&rsquo;m trying to say there is if you&rsquo;ve not been back into the block editor for a long time, and you&rsquo;ve just really seen it as a conduit to creating content, it is much more than that. And it&rsquo;s hard to express how much more it is unless you&rsquo;ve actually configured or played with a block that does a lot more than you could ever have done inside the classic editor. So I&rsquo;m wondering if you&rsquo;ve got any nice concrete examples of things that you&rsquo;ve achieved, the things that you&rsquo;ve been able to do inside of a block where people might go, oh, that&rsquo;s curious. I didn&rsquo;t realize that blocks could even do that kind of thing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:20:25]</div> <div class=\"chat-text\"><p>Actually, my brother is an accountant and, he does a lot of work with startups and when COVID first hit and they started doing the PVP loans and everything, I actually built a calculator for him, for his business to share with his clients. And I built it all in blocks and the calculator would, it would generate, you know, you would just put in whatever your income is and how many employees and it would generate. You can actually see it in the wild. If you go to stimulus benefits dot com, I have a calculator in there. That&rsquo;s it&rsquo;s a block. All this is all built in WordPress. You&rsquo;ll probably notice this theme. I think this was the 2020 theme. And honestly, it&rsquo;s pretty cool. It&rsquo;s pretty snappy. And this is just like something that I built for fun for my brother, you know? So if you want it to build, imagine, you&rsquo;re in the real estate business and you wanted to build out a full fledged mortgage calculator. I know there&rsquo;s a ton of realtors, real estate agents, real estate businesses that use mortgage calculators in their business to direct their clients to. I mean, you could absolutely do that. Very quickly and easily.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:21:36]</div> <div class=\"chat-text\"><p>The principle there is that your brother then has a block inside of his WordPress installed, which he can then just with the click of a button throw on to any post or page, uh, it&rsquo;s not a weird shortcode thing where he&rsquo;s got a plugin installed over there and he&rsquo;s got to go and find the right shortcode and then copy and paste it into the right part. It&rsquo;s just all of that functionality. The logic behind the calculator is all contained inside of a block. And so for him as the end user, presumably it&rsquo;s just really easy to deploy that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:22:06]</div> <div class=\"chat-text\"><p>It&rsquo;s a custom plugin. He could add it to any, you know, any site anywhere and what you see on the front end, of the site is what you also see in the editor. And then in the editor, you can change things like the background color, the border radius, the font color, the text. I mean, all the texts editable, which was really important because, everything was always changing. The rules of the game were changing. So he needed to be able to go in and edit the content of the calculator. So to me, it&rsquo;s like, it&rsquo;s super exciting that here&rsquo;s this thing that, like you&rsquo;re saying it would have been a short code. You throw the short code in and then say you go to the customizer. If you want to change the background color, you know, the fonts and add some custom CSS. This no, you you stay in the block editor and you just click a button. Okay. If you look at the calculator now it&rsquo;s got a black background. It&rsquo;d be really easy to change it to a white background with black text and then change out the font. And really you can kind of go as far as you want to go with this, I could see endless just calculators alone. I could see endless business opportunity.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:23:13]</div> <div class=\"chat-text\"><p>In a way, the idea of blocks, just being a conduit for putting content on the website. Yes. But it&rsquo;s also in a sense it&rsquo;s like a mini it&rsquo;s like a mini little application it&rsquo;s as you said, you created a plugin and what have you, but the complexity really has no limits. It&rsquo;s only the limits of what you&rsquo;re capable of coming up with and whatever it is that you&rsquo;ve built with all of its amazing, difficult capabilities could just be dropped in ad infinitum all over the place. And the sky, as you say, is the limit. And I feel like we&rsquo;re just turning a bit of a corner and some of the ideas are starting to come into the marketplace. Now, some really curious ideas about a whole different functionalities that are being wrapped up into blocks that we simply couldn&rsquo;t have done before.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:23:55]</div> <div class=\"chat-text\"><p>I&rsquo;m super excited because the fact that I could just create a calculator and drop it into a hundred sites, and then imagine I build a block base theme, say I build a block-based seam for like realtors, for example, I add this mortgage calculator, it&rsquo;s baked into it. I just can see all kinds of different, you know, additional tools like you&rsquo;re saying that you can get as complex as you want, but I also think blocks also offer this, a perfect canvas for constraint as well. You can go as complex as you want, but you also do want to make it easy for people to make changes to these little mini applications that we&rsquo;re building.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:24:35]</div> <div class=\"chat-text\"><p>I think one of the concerns that I have, amongst many other people, I&rsquo;m sure is. It&rsquo;s just this notion of people getting a bit click happy when installing blocks. The idea that there&rsquo;s a plugin for that in WordPress could easily be flipped to, well, there&rsquo;s a block for that. Non-technical users going out and looking through the block repository and installing things, and then kind of having to scratch their head and say, Hmm. My site really does seem to be very slow and then ultimately blaming WordPress for that, because that&rsquo;s the software it&rsquo;s built upon. I think you&rsquo;re right. Is it a good point to raise the one of constraint? Just because something exists, it doesn&rsquo;t mean you should install 50 of them and use them all at the same time.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:25:13]</div> <div class=\"chat-text\"><p>I do think that a certain level of constraint does breed creativity. So I think that, you know, the more we can focus on making it really easy for people. Make it as easy as possible to do something, the better. So I think like patterns, the block patterns for example, are going to be a huge boon to making it easy. Try multiple homepages or contact pages about pages or pricing tables or any part of a site that you can think of. It&rsquo;s going to be really easy to add that to your site.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:25:44]</div> <div class=\"chat-text\"><p>Have you been playing with block patterns a lot? And if so, are you pleased with where the system is right now for making all of that and surfacing them in the UI for you?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:25:55]</div> <div class=\"chat-text\"><p>I am super excited about where block patterns are going. I think they open up a ton of possibilities. If I were going to be dipping my toes right now, say I haven&rsquo;t started building blocks. That&rsquo;s where I would start honestly, is start building out some patterns because it&rsquo;s really cool to go into the editor and create this pattern and then be able to just move it from site to site seamlessly, and have it just work.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:26:23]</div> <div class=\"chat-text\"><p>Do you feel there&rsquo;s a new marketplace, a new job, if you like, emerging? We&rsquo;ve traditionally in WordPress, we&rsquo;ve had lots of people employed building websites, that&rsquo;s one niche, if you like, and then had other people working within agencies, possibly building bigger websites and on the code side, if you like, we&rsquo;ve had people creating plugins and themes and making commercial products out of those. Do you see blocks in that way that there&rsquo;s going to be a nice commercial interest in people going out and finding affordable blocks that do the one or two simple things that they need?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:26:59]</div> <div class=\"chat-text\"><p>I do think there will be. I just, I don&rsquo;t know if those are out there quite yet to find. What I&rsquo;m seeing a lot of though, is these ecosystems popping up around a set of custom blocks, and then patterns to use with those blocks and core blocks and then multiple themes. And so I see the business evolving into more of these like mini ecosystems and that&rsquo;s where I&rsquo;ve been building is focused on here&rsquo;s a set of custom blocks, custom patterns and themes for different types of use cases to get you quickly up and running.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:27:39]</div> <div class=\"chat-text\"><p>One of the things that I&rsquo;ve noticed is I&rsquo;ve seen that there are quite a few people at the moment trying to make a living out of this, and it seems, the most common way to do it at the moment is to come out with these block packs. And we&rsquo;re just going to use that phrase. I don&rsquo;t know if that&rsquo;s what these companies go by, but they release a suite of 5, 10, 15, 20 or so on, blocks that hopefully will cover almost every aspect.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Do you get yourself involved in any of those? Do you use any of the things which are available on the market at the moment, or are you all about just if I need it, I&rsquo;m going to make it myself?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:28:09]</div> <div class=\"chat-text\"><p>I definitely do. I love to see, and use what&rsquo;s out there. I&rsquo;ve used a bunch of different block collections on different projects, such as CoBlocks. And I don&rsquo;t know if you&rsquo;ve seen Stackable, WP Stackable? I know we were just talking about the GenerateBlocks and I see a lot of chatter on Twitter about people using GenerateBlocks. I don&rsquo;t know if you&rsquo;ve seen another one, that I just think is it&rsquo;s just beautiful called Aino Blocks, A, I, N, O, WP Aino dot com. Ellen Bauer has put together. I used to buy her WordPress themes and her and her co-founder put together a set of blocks, a limited set of custom blocks and then patterns. And they&rsquo;re going to be creating themes as well. Right now it&rsquo;s free to start using I&rsquo;m sure there&rsquo;s going to be, you know, some way of them monetizing that product.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:29:03]</div> <div class=\"chat-text\"><p>I&rsquo;m pretty sure that there&rsquo;s going to be more people dipping their toes into the commercial waters as time goes on, because it does feel as if this is the future for WordPress. And one thing that I&rsquo;m quite interested to see is, there&rsquo;ll be like an, almost like little micro blocks that just do one thing, but do it really well and go into some sort of different pricing structure. So as an example, on the PC or the Mac, if you buy an app, it&rsquo;s usually there&rsquo;s a reasonable amount of dollars expended on purchasing that app. I mean, if you go onto the iOS or the Android side, something much more slim is available and it costs significantly less, just a few dollars. And I&rsquo;m curious to see if this business model emerges, where we get an innovative block, which just does one small thing, but does it really well, I can&rsquo;t actually conjure anything up at the moment out of my head that may fulfill that bill, but I&rsquo;m really interested to see if those kinds of things start to emerge.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:30:03]</div> <div class=\"chat-text\"><p>I definitely think there will. I personally, I would love to focus just on building those, but I feel like I almost feel like it&rsquo;s got a, it feels like things need to go broad first and then narrow down to the specific use cases. But I have seen one really cool niche plugin is block visibility by Nick Diego. If you, if you&rsquo;re not following Nick on Twitter, you should. His plugin makes it really easy to show and hide blocks depending on different use cases, even. For example, he has an integration with WooCommerce and Easy Digital Downloads. And you can set visibility based on a schedule and if a customer purchased a product or not. So say you bought a product and two weeks ago, and then you can have a block pop up two weeks later and say, Hey, how&rsquo;s it going? Would love your feedback if you&rsquo;re enjoying using our plugin, leave us a review. So I do think that we&rsquo;re starting to see those and that is, you know, one of the best examples that I&rsquo;ve seen out there.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:31:11]</div> <div class=\"chat-text\"><p>It&rsquo;s like a little application just inside of a block. There&rsquo;s a lot of heavy lifting going on there. Isn&rsquo;t that, you know, if it&rsquo;s checking, the conditions to be right to, to make itself visible. You can imagine all sorts of permutations for the usefulness of that. Certainly in terms of marketing or perhaps hiding content that you want to be invisible to people who aren&rsquo;t members of your subscriber base or whatever it might be.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>And that&rsquo;s kind of the point for me is that blocks bring all of this, as yet un thought-out, potential. Whereas previously, there was just essentially text on a page with a bit of formatting and some shortcodes thrown in if you wanted to add extra functionality. And now the functionality is all within the block. And so are the settings and it&rsquo;s all in one simple, hopefully, user interface. Speaking of the user interface, just staying on the block editor. So we&rsquo;re recording this kind of near to the middle of 2021. And I&rsquo;m just conscious that there&rsquo;s a lot of comparisons made all the time between what the commercial page builders can do and what the block editor can do, and I&rsquo;m always curious to know what people&rsquo;s opinions are about how easy it is to put things together, put complicated block layouts together and create things which are beautiful because, I certainly still experience moments where I&rsquo;m really not sure if what I&rsquo;m looking at in the block editor is going to look how I expect it to when I finally publish it and check it out on the front end. So just wondered if you had any thoughts about its utility as a sort of what you see is what you get, or if there&rsquo;s still a ways to go?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:32:43]</div> <div class=\"chat-text\"><p>I think that ultimately that is going to come down to the themes and then any supporting block plugins that ship with those themes. With any page builder, any like major commercial page builder, there&rsquo;s a learning curve and yeah, what you see, what is, what you get out of the box with Elementor, but if you want to change something, if you&rsquo;re just getting started, it can feel daunting to dive into all those settings. I do think the responsibility falls more to the theme builders in and the plugin builders to make sure that that experience happens. Myself, I&rsquo;m working on what I&rsquo;m calling a minimalis page builder that I&rsquo;m hoping to shorten that learning curve. And to also, I want to take responsibility for making sure that what you see in the editor is what you see on the front end.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So, you know, I do. It&rsquo;s up to me and everyone else that is building out these experiences to make that happen. Off the shelf, if you used, you know, a core WordPress theme, you get your experience in the editor and on the front end is pretty seamless. There may be minor differences, but I mean, you&rsquo;re, you&rsquo;re pretty much seeing what you&rsquo;re getting on the frontend.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:33:59]</div> <div class=\"chat-text\"><p>Just curious because you dropped a few names earlier and I thought that was quite interesting because some of the people that you&rsquo;d mentioned I&rsquo;d heard of, and some of them, I hadn&rsquo;t. So I&rsquo;m wondering if you wouldn&rsquo;t mind just rattling off a couple of projects that you have seen and you thought that was good. And if you can attach some names to those as well, we&rsquo;ll try and make sure they go in the show notes along with this, on the WP Tavern website. So yeah, just a list of block projects that you think are worth keeping an eye on either because they&rsquo;re already fully fledged or they just seem like they&rsquo;re onto the cusp of doing something great. And some names to go with that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:34:31]</div> <div class=\"chat-text\"><p>Nick Diego, his block visibility, plugin block visibility wp dot com. And then I follow Nick on Twitter too. He&rsquo;s always sharing updates. And if you&rsquo;re into building blocks, valuable content there, Ellen Bauer with WP Aino A I N O dot com has some beautiful block patterns and custom blocks that you can start using right away. GenerateBlocks, of course, we mentioned Mike Oliver. He just released a new set of block patterns that, a beautiful set of block patterns that you can start using. And then I know you and I mentioned Brian Gardner&rsquo;s launching Frost WP. He&rsquo;s going to be launching a set, I think it&rsquo;s already launched actually at frostwp dot com.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So I can&rsquo;t go without saying too that Rich Tabor, he is the creator of CoBlocks and he, I think he sold that to GoDaddy. He&rsquo;s always working on something interesting and sharing cutting edge stuff with regards to building blocks block-based themes and plugins. So he&rsquo;d be worth taking a look at.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:35:38]</div> <div class=\"chat-text\"><p>That&rsquo;s very nice. I will be sure to mention those. One which I&rsquo;ll drop in, which I think is quite an interesting block-based, well, it is literally like a little application within WordPress. There&rsquo;s something called Newsletter Glue. Don&rsquo;t know if you&rsquo;ve come across this, but&hellip;</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:35:52]</div> <div class=\"chat-text\"><p>Lesley, how could I forget Lesley?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:35:56]</div> <div class=\"chat-text\"><p>Lesley Sim and her colleague, her co-founder have created a mechanism whereby you can repurpose your blog posts and they will instantly become newsletters, which sounds like the sort of thing you&rsquo;ve been able to do by scraping an RSS feed or something like that. But there&rsquo;s a lot more to it. For example, you can drag in a block, which will only be visible inside the post or alternatively, you could make it only visible inside the newsletter. And it does a lot more than that, but just that one simple little thing that you can do means that you can create a newsletter and have it look completely different in the newsletter than it does on your, the front end of your website. It&rsquo;s really interesting for me, it demonstrates perfectly why the block editor is going to be so useful in the future, because this was unimaginable without the context of blocks. It couldn&rsquo;t have been made in what we used to use in WordPress.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:36:49]</div> <div class=\"chat-text\"><p>To think about making a newsletter you generally have to, I would think go off site. And I use Newsletter Glue in a lot of my clients sites and it really makes it effortless to put together a newsletter and send it out. When you hit that send button. So like, did that really just send that this from WordPress, this is crazy!</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:37:07]</div> <div class=\"chat-text\"><p>But just the level of complexity going on there, the fact that it&rsquo;s doing a lot of heavy lifting, it&rsquo;s reaching out to third-party services and doing things, but only at the moment that you click publish and it&rsquo;s sending over HTML and telling the websites over there, right, go on, publish it right away to this list or that list. It&rsquo;s really remarkable. And it&rsquo;s, for me makes me feel that in the future, there&rsquo;ll be a lot more interoperability with SaaS platforms and other things like that built inside of blocks. So that I don&rsquo;t know, maybe your content management system, WordPress can reach out and have interactions with blocks with your CRM in some way, who knows?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>This is what I&rsquo;m finding exciting is that we&rsquo;re at the point where the technology is now available, but we don&rsquo;t yet have the history of developers trying out all their ideas. We did that with plugins. There must&rsquo;ve been a similar moment with plugins where it was a lovely idea. Look, we can extend WordPress, but there wasn&rsquo;t really so much out there yet. So plugins felt a bit like, well, it&rsquo;s a thing, but you know, I&rsquo;m not that bothered, but then look what happened. There really was a boom in plugins and they became&hellip; you know, you couldn&rsquo;t really have a functioning WordPress website without a few plugins here and there. And I feel the same will be true in the near future with blocks.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:38:19]</div> <div class=\"chat-text\"><p>I really hope we can make building blocks easier because I think we&rsquo;re just starting to see, like you&rsquo;re saying some of these really neat things come out and you really could build anything you wanted in WordPress, if you know what you&rsquo;re doing. So excited for what the future holds.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:38:34]</div> <div class=\"chat-text\"><p>Indeed, that feels like a perfect place to jump off this train. But before we do that, or before I do that, I always want to know where people can contact you. What&rsquo;s the best place for you to be reached. It could be an email address or a Twitter handle, whatever you&rsquo;re comfortable with..</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:38:49]</div> <div class=\"chat-text\"><p>Twitter, it would be the best twitter dot com slash leeshadle. That would be the best place to reach me.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:38:55]</div> <div class=\"chat-text\"><p>I will make a hundred percent sure to put that into the show notes and all that remains for me to say is Lee, thank you so much for joining us today and telling us a bit about your journey and your excitement about blocks.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-leeshadle vcard\"><cite class=\"fn\">Lee Shadle</cite> [00:39:06]</div> <div class=\"chat-text\"><p>Thank you Nathan, it&rsquo;s been so fun to talk to you today. I really appreciate you having me on the show.</p>\n</div></div></div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Oct 2021 13:23:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Post Status: WordCamp US 2021 Summary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=87474\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://poststatus.com/wordcamp-us-2021-summary/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11498:\"<p class=\"has-drop-cap\">After deciding not to hold the event in 2020, WordCamp US 2021 returned for a single day on October 1st. The entire event was planned in eight weeks — which was not widely known until mentioned by lead organizer Jen Swifter during closing remarks. This marks the first WordCamp US without Matt Mullenweg’s “State of the Word,” although due to the event being virtual it’s presumed Matt will be holding the SotW as a separate virtual “event” closer to the end of the year — similar to last year.</p>\n\n\n\n<p>The two track event still brought fresh content and had what could be argued as one of the most diverse speaker lineups for a single day at WordCamp US — at least when it comes to “new to WCUS” speakers. New faces — even on screens rather than a stage — are welcome to see.</p>\n\n\n\n<p>The event sold over 3000 tickets, which for a WordCamp US and a virtual event with limited marketing time is quite good. Of course not everyone might have showed up but I could easily get the feeling that this was a large event from the activity in the online chat and from Twitter.</p>\n\n\n\n<p class=\"has-background\"><strong>Update:</strong> WordCamp US released an official response when asked about registered and attending members.<br /><br />&#8220;<em>We had 3608 people register for the event and had as many as 400 concurrent viewers at one time.<br /><br />Online events are notoriously difficult to get attendee stats for, particularly an event like WCUS 2021 where the audience is global and spans so many time zones. Many people will watch what they can and catch the rest in their own time.<br /><br />We really love this as it makes for not only a more accessible event, but a more educational experience as it’s so easy to rewatch a session as many times as an individual needs.</em>&#8220;</p>\n\n\n\n<p>It is difficult to give highlights of the talks since I was part of the programming team that helped add these talks to the program. I decided not to watch pre-recorded presentations prior to the day of WordCamp US to make the experience as similar to a regular attendee’s experience as possible. For that reason, I couldn’t cover all the talks live, and there are still a few talks I need to go back and watch. But I can cover some highlights and point out some notable presentations.</p>\n\n\n\n<p class=\"has-background\"><strong>Note:</strong> Until WCUS talks are published on WordPress.tv, you can use <a href=\"https://mburnette.com/blog/wordcamp-us-2021/\">this guide</a> to view them timestamped in the live stream on YouTube thanks to Marcus Burnette.</p>\n\n\n\n<p>Bet Hannon’s talk on accessibility was well received by the audience at the start of the event. Bet noted that “25% of all adults in the US have a permanent or temporary disability,” so the subject material should apply to many site builders. Jill Binder came afterwards to give an inspirational story about her journey to being a diversity team leader for a team that in 2020 exists in 71 cities across 17 countries.</p>\n\n\n\n<p>Meanwhile, Cory Webb and Rich Tabor delivered what could be caled the “introduction” and “showcase” talks related to the block editor. Most talks in this particular track had some connection to the block editor or the latest major enhancements in WordPress.</p>\n\n\n\n<p>There were lightning talks after a <em>very</em> entertaining “musical break” — or what would be considered lunch for an in-person event. I wasn’t able to fully digest them all, but many of these performers featured rarely seen or new faces in the WordPress community:</p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/speaker/sienna-svob/\">Sienna Svob</a> covered sustainability, recommending that WordPress designers use fewer resources when possible and lean on hosts that use renewable energy.&nbsp;</p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/speaker/lesley-sim/\">Lesley Sim</a> of Newsletter Glue offered a no-slide presentation on how to make friends with early customers, and she reminded product builders to “create the expectation you’re helpful and easy to reach.” Lesley also reminded us that “anything you do for the first time [in business and marketing] is going to be awkward.”&nbsp;</p>\n\n\n\n<p>If you are running an ecommerce site, <a href=\"https://us.wordcamp.org/2021/speaker/lax-mariappan/\">Lax Mariappan</a>’s talk is a good one to watch. In a similar vein, if you are running a community or are a WordCamp / Meetup organizer I would recommend <a href=\"https://us.wordcamp.org/2021/speaker/shusei-toda/\">Shusei Toda</a>‘s talk on lessons learned from WordCamp Tokyo 2021.</p>\n\n\n\n<p>Another presentation for designers and theme developers would be Tammie Lister’s “Let Themes Be Themes” talk which will likely find a special place in the heart of those yearning for inspiration as we head into the next-generation of WordPress themes with full site editing and the block editor.</p>\n\n\n\n<p>For entertainment, <a href=\"https://us.wordcamp.org/2021/speaker/taco-verdonschot/\">Taco Verdonschot</a> scored some points for using his own green screen in his talk on recharging your social batteries. This was a timely talk when many of us still work almost completely remotely via Zoom and Slack.</p>\n\n\n\n<p>The second half of WordCamp US seemed to go by quickly. Two key talks about WordPress.org contributions were featured in one track. The first by members of the WordPress Training team focused on the Learn.WordPress.org resource. Support for Leearn will make a big impact in the coming days — we’ll do a deeper dive into this subject in the future — and I do agree that one day visiting a WordPress.org profile might be key part of the hiring process by companies looking for WordPress professionals.</p>\n\n\n\n<p>The other key talk was given by <a href=\"https://us.wordcamp.org/2021/speaker/amyjune-hineline/\">AmyJune Hineline</a> who covered how many ways you can contribute and reviewed all the available groups at make.wordpress.org.</p>\n\n\n\n<p>Developers got a treat when <a href=\"https://us.wordcamp.org/2021/speaker/helen-hou-sandi/\">Helen Hou-Sandi</a> showed how the new White House site was built in six weeks with WordPress and over a dozen custom blocks.&nbsp;</p>\n\n\n\n<p>“[10up] did 12 weeks work of hours in 6. Q&A; as we went. People were trusted to Q&A; their own work, no additional layers. We did have external help and always kept moving.&#8221;&nbsp;</p>\n\n\n\n<p>While mostly inspirational, she did show off some React code and revealed the entire talk including the live coding was done in the browser (thanks in part to Github’s Codespaces). Another treat was seeing the experiments that <a href=\"https://us.wordcamp.org/2021/speaker/kjell-reigstad/\">Kjell Reigstad</a> showcased in his talk about block styles.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><img width=\"250\" height=\"250\" src=\"https://i0.wp.com/poststatus.com/wp-content/uploads/2021/09/RtpKYzps_400x400.png?resize=250%2C250&ssl=1\" alt=\"Get Hired\" class=\"wp-image-85823 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\"><strong>Get started today!</strong> Build your career in WordPress.</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job.</strong> Read the <strong>Get Hired</strong> <a href=\"https://poststatus.com/get-hired/#%f0%9f%93%a7-subscribe-to-the-get-hired-newsletter\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to the <strong>Get Hired</strong> <a href=\"https://poststatus.com/podcast/get-hired/\">podcast</a>. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/gethiredwp\">@GetHiredWP</a>. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/speaker/josepha-haden-chomphosy/\">Josepha Haden Chomphosy</a> closed out the conference with a brief talk on “finding your own voice” with a fireside chat with Michelle Fran. Some tidbits:</p>\n\n\n\n<ul><li><strong>On acquisitions in the WordPress space: </strong>Josepha overall favors them and sees acquisitions as part of a maturing market ,but it’s not all about the money: “Sometimes companies being acquired need guidance. Large companies can provide advice and funds for the smaller company to get further. Mergers and acquisitions shouldn’t be looked at something that decreases the diversity in the ecosystem.&#8221;</li><li><strong>On diversity:</strong> “WordPress can be used by anybody ,so it should be able to be built by anybody.” However, Jospeha acknowledges that ventures similar to the all-womens release team (which took almost 2 years to plan) might not be happening anytime soon so it doesn’t turn into a “gimmick” and can be used more effectively to attract more diverse audiences to contribute.&nbsp;</li><li><strong>On individual vs. corporate contributions: </strong>“Always important to me in terms of volume, we aim for 2/3 contribution from individuals and 1/3 that are corporately sponsored,” although right now the numbers are closer to 50/50.</li><li><strong>On increasing openness and transparency:</strong> For decision making in WordPress and the posts on make.wordpress.org (including her updates), Josepha said: “Even if people aren’t reading what goes into the decisions of WordPress, it’s just as important for people to go back and read that content than it is to read more traditional documentation.”</li></ul>\n\n\n\n<p>I’m biased, but I think overall the event was well done. Apart from Matt’s absence, it seemed to have a flavor of a WordCamp US throughout, complete with conversations happening on YouTube chat, Post Status Slack, and Twitter.</p>\n\n\n\n<h2 id=\"h-get-involved-in-wordpress\">Get Involved in WordPress!</h2>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column grey-message\">\n<ul><li>Have you thought about what you can do that might lead to speaking at a WordCamp or local meetup yourself? <strong>Abha Thankor</strong> has <a href=\"https://us.wordcamp.org/2021/how-to-get-involved-in-the-wordpress-community-after-attending-a-wordcamp/\">some suggestions</a> for you.</li><li>Jobs in WordPress involve a lot of 21st century skills in digital literacy and digital citizenship. <a href=\"https://wordpress.org/news/2021/10/episode-17-wordpressing-your-way-to-digital-literacy/\">In the latest <strong>WP Briefing</strong> podcast</a>, WordPress executive director <strong>Josepha Haden Chomphosy</strong> reflects on her WordCamp US keynote talk and discusses how participating in open source projects can help you learn these skills.</li><li>Get involved in <strong>Learn WordPress</strong>! Over at <a href=\"http://learn.wordpress.org\">learn.wordpress.org</a> there’s <a href=\"https://make.wordpress.org/training/2021/08/08/who-can-learn-help/\">a lot of change going on</a>, and you can be part of it. Learn is for everyone, so no matter where you are in your life and career, you can benefit from and contribute to these educational materials that support the community project known as WordPress.</li></ul>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Oct 2021 03:32:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: GiveWP Launches Peer-to-Peer Fundraising Add-On\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123231\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://wptavern.com/givewp-launches-peer-to-peer-fundraising-add-on?utm_source=rss&utm_medium=rss&utm_campaign=givewp-launches-peer-to-peer-fundraising-add-on\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4415:\"<p class=\"has-drop-cap\">The GiveWP team announced an extension of its flagship donation plugin for allowing <a href=\"https://givewp.com/announcing-the-givewp-peer-to-peer-fundraising-suite/\">peer-to-peer (P2P) fundraising</a> in late September. The solution should make the project even more appealing than before for those looking to break from third-party donation services and go the self-hosted route. The first version rolls out individual and team fundraising pages, leaderboards, campaign sponsor support, and more.</p>\n\n\n\n<p>In the past, GiveWP offered a simple solution for setting up donations on a website. People could use it for everything from nonprofit organizations to fundraising smalltown baseball team jerseys. However, any efforts to raise money fell squarely on the site owner&rsquo;s shoulders.</p>\n\n\n\n<p>The <a href=\"https://givewp.com/addons/peer-to-peer/\">Peer-to-Peer add-on</a> changes that by allowing people who support a particular cause to be both an evangelist and a fundraiser for the project.</p>\n\n\n\n<p>&ldquo;Peer-to-Peer is a unique form of fundraising,&rdquo; said GiveWP co-founder Matt Cromwell. &ldquo;To date, GiveWP has been focused primarily on the single donation form. But Peer-to-Peer is about grouping individual fundraisers into teams, each with their own form and campaign goal.&rdquo;</p>\n\n\n\n<img />Campaign fundraising page.\n\n\n\n<p>The extension allows site owners to create an overarching campaign while breaking it down into smaller individual or team-led sub-goals. For example, a campaign can have a donation goal of $100,00, but teams can reach for smaller chunks of that, such as $10,000. Ultimately, all donations are pooled together into the campaign total.</p>\n\n\n\n<p>&ldquo;This is a type of fundraiser that nonprofits use to raise significant funds,&rdquo; said Cromwell. &ldquo;These aren&rsquo;t one-off simple fundraisers typically.&rdquo;</p>\n\n\n\n<p>The extension adds a bit of gamification to fundraising campaigns. Individuals and teams are both added to separate leaderboards, showing their rank among their peers.</p>\n\n\n\n<img />Campaign leaderboards.\n\n\n\n<p>Individuals and teams can do more than just compete for the top rank on a campaign. They can customize their own fundraising page. It is this social element that helps bring a bit more humanity to a project.</p>\n\n\n\n<p>&ldquo;Examples of this type of fundraising are the Susan G Komen &lsquo;Race for the Cure&rsquo; or the Boston Marathon,&rdquo; said Cromwell. &ldquo;Individuals sign up to be team captains, they recruit team members. Members have goals that lead to the team goal. All teams together go toward the total campaign goal.&rdquo;</p>\n\n\n\n<p>There are times when some fundraising efforts can feel a bit faceless, almost corporate-like entities asking for donations. When you start adding people from outside an organization to do some legwork, they may feel like part of something bigger.</p>\n\n\n\n<img />Custom team page.\n\n\n\n<p>&ldquo;Of course, we consulted with our customers, we held a Town Hall to get their input and feedback,&rdquo; said Cromwell. &ldquo;Our customers have been asking to do this type of fundraising for years. We have a lot of input on this in our feedback system. The human element is part and parcel to the success of this popular form of fundraising.&rdquo;</p>\n\n\n\n<p>A P2P solution was the <a href=\"https://feedback.givewp.com/feature-requests/p/peer-to-peer-fundraising\">top-voted feature request</a> through the GiveWP feedback system. As for the future of the add-on plugin, it is easy to see what the GiveWP&rsquo;s users are asking for through its own <a href=\"https://feedback.givewp.com/give-peer-to-peer\">feedback channel</a>. Currently, there is no shortage of ideas.</p>\n\n\n\n<p>&ldquo;We are dedicating at least two developers per development cycle over the next few cycles to continue to improve and enhance P2P based on the ongoing feedback we get from our users,&rdquo; said Cromwell.</p>\n\n\n\n<p>He did not give any specific details about other projects the GiveWP team is working on. However, he did note that they are excited about providing more solutions for nonprofits.</p>\n\n\n\n<p>&ldquo;We&rsquo;d love to see our team providing more solutions outside of only the donation form side of things,&rdquo; he said. &ldquo;Nonprofits need stable, beautiful, and performant websites, and we think we can help on that front now too.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Oct 2021 00:42:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.org blog: The Month in WordPress: September 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2021/10/the-month-in-wordpress-september-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16048:\"<blockquote class=\"wp-block-quote\"><p>There’s a lot of tolerance in open source software for shipping slightly imperfect work. And that’s good. When we ship software that’s a little bit imperfect, it makes it clear how everyone can participate, how everyone could participate, if they could find this WordPress community that supports the CMS.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> on the “<a href=\"https://wordpress.org/news/2021/09/episode-16-a-sneak-peek-at-wordpress-5-9/\">A Sneak Peek at WordPress 5.9</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, talking about what goes into a WordPress release like version 5.9. Read on to find out more about updates on the latest release and the latest WordPress news from September 2021.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress Translation Day 2021 Celebrations ran for 30 days</h2>\n\n\n\n<img width=\"632\" height=\"332\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/10/image.png?resize=632%2C332&ssl=1\" alt=\"WP Translation Day Matt Mullenweg Quote. Quote text: “Translation is so magical because it multiplies the work of all the other contributors of WordPress. If you care about freedom and the future of the internet, translating WordPress is one of the best things you can do for people who speak your language.”\" class=\"wp-image-11328\" />\n\n\n\n<p>WordPress Contributor teams, led by the Polyglots and Marketing teams, organized <a href=\"https://wptranslationday.org/\">WordPress Translation Day celebrations</a> for the entire month of September. Contributors from across the world joined the celebrations by translating WordPress into their own languages. Additionally, the team organized a host of <a href=\"https://wptranslationday.org/wptd-2021/global-events/\">global</a> and <a href=\"https://wptranslationday.org/wptd-2021/local-events/\">local events</a>. Translation sprints were organized by the <a href=\"https://make.wordpress.org/community/2021/09/20/kicking-off-the-community-documentation-translation-sprint-from-september-20-to-24/\">Community</a> and <a href=\"https://make.wordpress.org/training/2021/09/30/wptranslationday-subtitling-videos-on-learn/\">Training</a> teams, as well as local groups.</p>\n\n\n\n<p>As part of the celebrations, nominations were invited for contributors who had made a significant impact on the translation of WordPress and its availability in so many languages worldwide. <a href=\"https://wptranslationday.org/blog/call-for-nominations-polyglots-appreciation/\">More than 30 notable polyglot contributors were nominated for their contributions</a>. They will be featured in the coming month on the <a href=\"https://wptranslationday.org/\">WP Translation Day website, together with event recaps and more news.</a></p>\n\n\n\n<p>Read the latest <a href=\"https://wordpress.org/news/2021/09/people-of-wordpress-yordan-soares/\">People of WordPress feature on polyglots contributor Yordan Soares</a>, from South America.</p>\n\n\n\n<h2>WordPress Release updates</h2>\n\n\n\n<ul><li>WordPress security and maintenance release – <a href=\"https://wordpress.org/news/2021/09/wordpress-5-8-1-security-and-maintenance-release/\">Version 5.8.1</a> came out on September 9, 2021. The release fixes three major issues and includes 60 bug fixes. You can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org. The <a href=\"https://make.wordpress.org/core/2021/10/04/wordpress-5-8-2-deferred/\">5.8.2 release has been deferred</a> and if needed a minor release will be added before 5.9.&nbsp;</li><li>Work is progressing towards WordPress 5.9, and the team released a <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">planning round-up</a> along with a <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">call for release leads</a>. October 14 is the go/no-go date of the release, which is planned to be <a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">launched on December 14, 2021</a>.</li></ul>\n\n\n\n<p>Want to contribute to WordPress core? Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Don’t miss the Core Team chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&min=00&sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Say hi to Gutenberg Versions 11.4 and 11.5</h2>\n\n\n\n<p>We launched Gutenberg <a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">version 11.4</a> and <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">version 11.5</a> this month. <a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\">Version 11.4</a> adds image blocks to the gallery block, duotone filters for featured images, and padding support for Button Blocks. <a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\">Version 11.5</a> adds flex layout support to the group and social icon blocks along with <a href=\"https://make.wordpress.org/core/2021/09/22/core-editor-improvement-introducing-the-widget-group-block/\">widget group blocks</a>. It will support the addition of a site logo or title directly into menus.</p>\n\n\n\n<p>Want to get involved in developing Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The <a href=\"https://make.wordpress.org/core/2021/09/17/whats-next-in-gutenberg-mid-september-2021/\">What’s next in Gutenberg</a> post gives details on the latest updates.</p>\n\n\n\n<h2>New Guidelines for in-person WordCamps</h2>\n\n\n\n<p>The Community Team <a href=\"https://make.wordpress.org/community/2021/09/13/announcement-updated-guidelines-for-in-person-wordcamps/\">published new guidelines</a> for returning to in-person WordCamps in regions where in-person events are allowed by the local public health authorities.&nbsp;</p>\n\n\n\n<p>Community members can now organize in-person WordCamps for fully vaccinated, recently tested negative, or recently recovered folks (in the last three months) — provided their region passes the in-person <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/2021-returning-to-in-person-meetups/in-person-meetup-decision-checklist/\">safety checklist</a> OR if vaccines and/or COVID testing are accessible to all. Organizers can continue to plan online WordCamps if their region does not meet the guideline.&nbsp;</p>\n\n\n\n<p>New guidelines are also available on the <a href=\"https://make.wordpress.org/community/2021/09/27/announcement-returning-to-in-person-do_action-charity-hackathons/\">return of in-person do_action hackathons</a>.</p>\n\n\n\n<p>Want to get involved in the Community Team and help bring back in-person WordPress events? <a href=\"https://make.wordpress.org/community/\">Follow the Community Team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RQC7RN\">#community-events</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Make WordPress Slack</a>! Check out the following <a href=\"https://central.wordcamp.org/\">upcoming WordCamps</a> and <a href=\"https://make.wordpress.org/community/events/\">meetups</a>.</p>\n\n\n\n<h2>Important Team announcements/updates</h2>\n\n\n\n<ul><li>The Polyglots Team <a href=\"https://make.wordpress.org/polyglots/2021/09/27/sign-up-for-the-new-polyglots-monthly-newsletter/\">opened sign-ups</a> for their new monthly newsletter. The first edition goes out on October 15!</li><li>The<a href=\"https://make.wordpress.org/project/2021/09/10/suggested-iterations-for-the-five-for-the-future-program-and-tool/\"> Five for the Future program is being revisited</a> to identify opportunities for growth.&nbsp;</li><li>The Docs Team formally <a href=\"https://make.wordpress.org/docs/2021/09/15/announcement-new-workflow-for-reporting-documentation-issues/\">launched a new repository</a> for tracking issues with WordPress documentation: <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker\">https://github.com/WordPress/Documentation-Issue-Tracker</a></li><li>The Plugins Team <a href=\"https://make.wordpress.org/plugins/2021/09/20/change-to-how-long-active-reviews-remain-open/\">reduced the time period to complete active review requests for plugins</a> from six to three months.</li><li>The Community Team started work on the <a href=\"https://make.wordpress.org/community/2021/09/10/2022-global-sponsorship-working-group/\">2022 Global Sponsorship program</a>.</li><li>The Design Team is <a href=\"https://make.wordpress.org/design/2021/09/16/document-status-and-visibility/\">working on a redesign proposal of the Inspector sidebar</a> in the WordPress post/page editor.</li><li>The Themes Team announced the results of the <a href=\"https://make.wordpress.org/themes/2021/09/13/theme-upload-survey-results-next-steps/\">six-week Theme author survey</a>.</li><li>The Training Team also shared <a href=\"https://make.wordpress.org/training/2021/09/14/learn-wordpress-needs-assessment-results/\">results of a third-party needs assessment exercise for Learn WordPress</a> which offers some excellent insights.&nbsp;</li></ul>\n\n\n\n<h2>Feedback/Testing requests from Contributor Teams</h2>\n\n\n\n<ul><li>Version 18.3 of WordPress for <a href=\"https://make.wordpress.org/mobile/2021/09/20/call-for-testing-wordpress-for-ios-18-3/\">iOS</a> and <a href=\"https://make.wordpress.org/mobile/2021/09/21/call-for-testing-wordpress-for-android-18-3/\">Android</a> are now available for testing!</li><li>Join the <a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">10th challenge</a> of the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing (FSE) Outreach program</a> &#8211; “<a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">Pattern Party</a>”. Check out the <a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">announcement post</a> for testing instructions and join the fun in the <a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">#fse-outreach-experiment</a> Slack channel. Deadline: October 13, 2021</li><li>The Training Team is requesting feedback on:<ul><li><a href=\"https://make.wordpress.org/training/2021/09/27/proposal-ensuring-high-quality-video-contributions-to-learn-wordpress/\">Strategies to ensure high-quality video contributions for Learn WordPress</a>. Deadline: October 6, 2021</li><li><a href=\"https://make.wordpress.org/training/2021/08/10/proposal-learner-achievements-on-profiles/\">Learner achievements on profiles</a>: no current deadline</li></ul></li><li>Help the Test Team <a href=\"https://make.wordpress.org/test/2021/10/01/test-team-chat-summary-28-september-2021/\">reach out to extenders to check if their test suites are compatible with the modernization of the WordPress Core PHP Test Suites</a>. Information on what the changes mean and step-by-step instructions are available over in the following post: <a href=\"https://make.wordpress.org/core/2021/09/27/changes-to-the-wordpress-core-php-test-suite/\">Changes to the WordPress Core PHP Test Suite</a>.</li><li>The Polyglots Team is <a href=\"https://make.wordpress.org/polyglots/2021/09/19/how-to-handle-block-pattern-translations/\">exploring two different mechanisms on translating user-submitted block patterns</a>: GlotPress v/s forking patterns to locales and is requesting feedback from community members.</li></ul>\n\n\n\n<h2>WordPress Events updates</h2>\n\n\n\n<ul><li><a href=\"https://galicia.wordcamp.org/2021/\">WordCamp Galicia 2021</a> was held from September 30 &#8211; October 2, 2021 and <a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a> ran on October 1.</li><li>Don’t miss these upcoming WordCamps: <a href=\"https://nicaragua.wordcamp.org/2021/\">WordCamp Nicaragua 2021</a> (October 8-9, 2021) and <a href=\"https://italia.wordcamp.org/2021/\">WordCamp Italia 2021</a> (October 22-23, 2021) </li><li>The Diverse Speakers Training group (<a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">#WPDiversity</a>) of the Community Team organized an <a href=\"https://make.wordpress.org/community/2021/09/15/wpdiversity-events-in-september-attention-india/\">allyship workshop, along with dedicated workshops focused on India in September</a>.</li><li>The Test Team organized a <a href=\"https://make.wordpress.org/test/2021/09/17/hallway-hangout-discussion-on-adoption-pathways-for-full-site-editing-16-september/\">Hallway Hangout on adoption pathways for Full Site Editing</a> where attendees mentioned how they use FSE and shared ideas for improvement. </li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further reading</h2>\n\n\n\n<ul><li>The Hosting Team recommended that all web hosts <a href=\"https://make.wordpress.org/hosting/2021/09/15/wordpress-5-8-1-security-release-is-time-sensitive/\">test and push the WordPress 5.8.1 security update through to their users</a> as soon as possible.</li><li>The Training Team <a href=\"https://make.wordpress.org/training/2021/09/21/should-learn-wordpress-contributors-be-gpl-compliant/\">clarified GPL compliance guidelines</a> for Learn WordPress contributions, and the <a href=\"https://learn.wordpress.org/meta/handbook/workshops/eligibility-of-workshop-presenters/\">guidelines for workshop presenters are available in the handbook</a>.</li><li>The codebase for Openverse, a search engine for openly-licensed media,&nbsp; i<a href=\"https://make.wordpress.org/openverse/2021/09/03/call-for-translations-i18n-in-openverse/\">s now available for translation</a>.</li><li>The Core Team implemented a <a href=\"https://make.wordpress.org/core/2021/09/28/implementing-a-webfonts-api-in-wordpress-core/\">Webfonts API in WordPress core</a> for simplifying the process of enqueuing external fonts on WordPress sites.&nbsp;</li><li>The Test Team rescheduled <a href=\"https://make.wordpress.org/test/2021/09/23/5-9-end-to-end-e2e-working-strategy-session-agenda-for-29-sep-2021/\">the End-to-End (e2e) Test working strategy session</a> to October 6. More details <a href=\"https://make.wordpress.org/test/2021/09/23/5-9-end-to-end-e2e-working-strategy-session-agenda-for-29-sep-2021/\">in the announcement post</a>.</li></ul>\n\n\n\n<p><em>Have a story that we could include in the next ‘Month in WordPress’ post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.&nbsp;</em></p>\n\n\n\n<p><em>The following folks contributed to September’s Month in WordPress: <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/chaion07/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaion07</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>, <a href=\"https://profiles.wordpress.org/harishanker/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>harishanker</a>, <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, and <a href=\"https://profiles.wordpress.org/tobifjellner/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>tobifjellner</a></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Oct 2021 20:01:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Facebook Outage Rekindles Push for a Free and Open Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123719\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"https://wptavern.com/facebook-outage-rekindles-push-for-a-free-and-open-web?utm_source=rss&utm_medium=rss&utm_campaign=facebook-outage-rekindles-push-for-a-free-and-open-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5825:\"<p>Facebook, Workplace, Instagram, and WhatsApp went down today for roughly six hours due to a Border Gateway Protocol (BGP) configuration error. Cloudflare describes BGP as &ldquo;<a href=\"https://www.cloudflare.com/learning/security/glossary/what-is-bgp/\">the postal service of the Internet</a>.&rdquo; It is responsible for routing Facebook&rsquo;s traffic and making all of its domains accessible to visitors.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">To be more precise (and Geek Factor 5) the BGP routes serving Facebook\'s authoritative DNS were withdrawn, rendering all Facebook domains inaccessible. That\'s per <a href=\"https://twitter.com/DougMadory?ref_src=twsrc%5Etfw\">@DougMadory</a> , who knows a few things about BGP/DNS.</p>&mdash; briankrebs (@briankrebs) <a href=\"https://twitter.com/briankrebs/status/1445081561536339970?ref_src=twsrc%5Etfw\">October 4, 2021</a></blockquote>\n</div>\n\n\n\n<p>At first glance, the outage appeared to be a malicious attack following a Facebook whistleblower&rsquo;s revelations on 60 Minutes Sunday evening. BGP routing can be hijacked, but so far there is no evidence to suggest that it&rsquo;s anything other than an ill-timed configuration error. </p>\n\n\n\n<p>&ldquo;The thing I saw at Facebook over and over again was there were conflicts of interest between what was good for the public and what was good for Facebook, and Facebook over and over again chose to optimize for its own interests, like making more money,&rdquo;&nbsp; former Facebook product manager Frances Haugen told <a href=\"https://www.cbsnews.com/news/facebook-whistleblower-frances-haugen-misinformation-public-60-minutes-2021-10-03/\">60 Minutes</a>. </p>\n\n\n\n<p>Haugen copied tens of thousands of documents of internal research before leaving, one which stated: &ldquo;We have evidence from a variety of sources that hate speech, divisive political speech and misinformation on Facebook and the family of apps are affecting societies around the world.&rdquo;</p>\n\n\n\n<p>Haugen&rsquo;s interview with 60 Minutes had already made Facebook&rsquo;s lack of ethical compass a hot topic at media outlets before all of its web properties went down earlier today. This outage is one of the most severe in the company&rsquo;s 17-year history, due to the cascading effects of Facebook&rsquo;s infrastructure being tied into so many aspects of every day life. According to <a href=\"https://www.independent.co.uk/life-style/gadgets-and-tech/verizon-down-tmobile-ee-internet-b1932198.html\">The Independent</a>, reports of problems at internet and phone companies started rolling in, as Facebook and its related apps are often confused with the internet. </p>\n\n\n\n<p>The whistleblower&rsquo;s evidence of the pernicious nature of Facebook&rsquo;s algorithms, combined with the widespread outage of the company&rsquo;s network of services, has sparked a renewed call for people and businesses to return to the open web. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Seems like a good time to remind every business owner that you do not own your audience on social media. Whether you have 10 followers or 10,000,000, they can be gone in an instant. Build your email list and create content on your own website.</p>&mdash; Quincy Zikmund (@quincyzikmund) <a href=\"https://twitter.com/quincyzikmund/status/1445075850320359426?ref_src=twsrc%5Etfw\">October 4, 2021</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Now is an excellent time to email your local authorities, school, camp, church, soccer league, whatever &ndash; and tell them: <br /><br />\"Please stop posting your updates on Facebook and Instagram, which are liable to disappear. Instead, use a website on the open web, and email updates.\"</p>&mdash; Mark Hurst (@markhurst) <a href=\"https://twitter.com/markhurst/status/1445135780171636736?ref_src=twsrc%5Etfw\">October 4, 2021</a></blockquote>\n</div>\n\n\n\n<p>These kinds of outages disrupt those who have built their communications and commerce on top of Facebook&rsquo;s products. Businesses put themselves in a vulnerable place when they rely on a walled garden to deliver audience engagement, especially when that garden&rsquo;s algorithms promote divisive discourse and misinformation. Business owners should take recent events as a wakeup call and revoke all the permissions given to unaccountable platforms for short-term gains. It&rsquo;s time to invest in the long-term health of your online presence by building on the open web. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">While we\'re at it: if you don\'t have a Web site of your own and you\'ve been blogging and creating content on third-party platforms, now might be a good time to reconsider creating one and owning your own little corner of the internet. &#128273;</p>&mdash; Sara Soueidan (@SaraSoueidan) <a href=\"https://twitter.com/SaraSoueidan/status/1445107375006945282?ref_src=twsrc%5Etfw\">October 4, 2021</a></blockquote>\n</div>\n\n\n\n<p>As good people work to expose the inner workings of companies that have abandoned principles in pursuit of profit, I am hopeful the web will right itself and applications will become more open and adept at helping people navigate these turbulent times. For those today who are remembering what it&rsquo;s like to have <a href=\"https://wptavern.com/automattic-takes-on-facebook-with-a-meditation-on-the-open-web\">a breath of fresh air</a> in Facebook&rsquo;s absence, challenge yourself to start creating content on your own site. Make your website the original source of your work and distribute it out to social networks where you want to extend your reach. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Oct 2021 02:45:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: The Next Web Publishes Storyblok-Sponsored Hit Piece on WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123712\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/the-next-web-publishes-storyblok-sponsored-hit-piece-on-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=the-next-web-publishes-storyblok-sponsored-hit-piece-on-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6366:\"<p class=\"has-drop-cap\">Last week, under its news section, The Next Web published what could only be described as a hit piece: <a href=\"https://thenextweb.com/news/developers-hate-wordpress-so-should-marketers\">Developers hate WordPress &mdash; and so should marketers</a>. The claim was that, despite its current 40% market share, folks should start looking at alternatives for a better experience.</p>\n\n\n\n<p>The first developer interviewed for this piece was the CEO of Storyblok, Dominik Angerer. Storyblok is a headless CMS, a competitor to WordPress.</p>\n\n\n\n<p>The second person interviewed for the article was Doeke Leeuwis, the founder and technical director for Story of AMS. The agency focuses on headless eCommerce. <em>What is one of the three platforms it uses?</em> If you guessed Storyblok, you would have gotten it right. Bonus points if you predicted it was listed first of the three in their marketing material.</p>\n\n\n\n<p>The third developer interviewed was Mitchel van Bever, who also works for Story of AMS. The company has been featured multiple times on the Storyblok blog and is a featured case study.</p>\n\n\n\n<p><em>Are you starting to see a pattern yet?</em></p>\n\n\n\n<p>If you read through the rest of the article, you will note that the post was sponsored by Storyblok. At least they were honest about it.</p>\n\n\n\n<img />\n\n\n\n<p>Somehow I believe most readers would have skipped the article if that was posted before the content.</p>\n\n\n\n<p>It is easy to find developers who dislike WordPress. But, you lose credibility when writing a piece that features interviewees who are either directly sponsoring or benefitting from the story.</p>\n\n\n\n<p>The centerpiece for the entire story hinged on the <a href=\"https://insights.stackoverflow.com/survey/2019\">2019</a> and <a href=\"https://insights.stackoverflow.com/survey/2020\">2020</a> Stack Overflow annual developer survey. There is a lot to glean from the data provided by over 65,000 workers in the field. However, the article merely focused on a single point: WordPress was voted the most dreaded language or technology at 67% in the last year. Everything else centered on what those with a vested interest in Storyblok had to say.</p>\n\n\n\n<p>We could talk about scalability, but with WordPress.com as a prime example of running the WordPress software at scale, do we really need to?</p>\n\n\n\n<p>We could talk about flexibility, but when WordPress has more free third-party plugins (59,000+) than Storyblok has in total live websites (<a href=\"https://trends.builtwith.com/cms/Storyblok\">500+ according to BuiltWith</a>), is it really worth diving into?</p>\n\n\n\n<p>As a writer in the WordPress sphere, you may think I am entirely biased. That is at least partially true. However, I have worked with multiple systems. Laravel is one of my favorites, but its beautiful architecture does not always translate to quickly getting a job done in the same way as WordPress. I have helped friends and family launch projects on several non-WordPress services. It all depends on what the best tool for the job is.</p>\n\n\n\n<p>I have even created my own custom CMS for my personal blog. I felt like WordPress was overkill for what I needed. It is OK to use another tool even when you typically prefer working with something else. My custom blogging system was built just for me, but it now runs on two websites. I had another developer friend crazy enough to try it.</p>\n\n\n\n<p>My love for WordPress is not absolute. It is not unconditional.</p>\n\n\n\n<p>But I still love it. There are 1,000s of others who love working with it too, and these developers are more likely to tell you what the <em>actual</em> issues with the platform are. We can criticize it honestly because we are down in the trenches, working with the platform every day. We know it is not always the ideal programming experience. We know it has some legacy baggage. Despite its warts, we have built something that most others only dream of doing. We have created a vast community.</p>\n\n\n\n<p>If you thought it was all about who had the shiniest code, you would be wrong.</p>\n\n\n\n<p>It is about business competitors willing to communicate and even help others in their space.</p>\n\n\n\n<p>It is about <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a>, a program where WordPress-related companies contribute to free software.</p>\n\n\n\n<p>It is about <a href=\"https://wordpress.org/support/\">support forum</a> volunteers lending a helping hand.</p>\n\n\n\n<p>It is about the 100s of folks on the <a href=\"https://make.wordpress.org/\">Make WordPress</a> teams who contribute to various aspects of the project, everything from code reviews to translations.</p>\n\n\n\n<p>It is about sharing a drink with a years-long friend you just met IRL for the first time at a <a href=\"https://central.wordcamp.org/\">WordCamp</a>, albeit mostly virtual for the last couple of years.</p>\n\n\n\n<p>It is about the <a href=\"https://wppodcasts.com/\">podcasts</a> that people produce for the love of the platform and its surrounding projects.</p>\n\n\n\n<p>It is about quitting your nine-to-five to launch a new business as a plugin developer.</p>\n\n\n\n<p>It is about taking part in a movement that has allowed millions to publish on the web.</p>\n\n\n\n<p>No, not every developer who participates in the annual Stack Overflow survey loves WordPress. Most of them may dread working with the platform, and that trend may very well continue. What we have is bigger. WordPress is its community.</p>\n\n\n\n<p>This smells like just another hit piece from a WordPress <em>competitor</em> <a href=\"https://wptavern.com/wixs-negative-advertising-campaign-falls-flat-with-wordpress-developers-and-professionals\">like we have seen before</a>. At least some of the Wix videos were funny (<em>come on, you know you laughed at at least one or two of them</em>), and folks <a href=\"https://wptavern.com/wix-takes-a-jab-at-wordpress-with-bewildering-new-marketing-campaign\">got free headphones from the deal</a>. This Storyblok-sponsored post just leaves a sour taste.</p>\n\n\n\n<p>Like my grandma &mdash; probably everyone&rsquo;s grandma &mdash; used to say, &ldquo;You catch more flies with honey.&rdquo; This was an opportunity to sell potential users on Storyblok&rsquo;s features. Maybe bashing competitors brings traffic, but I doubt it brings any goodwill or long-lasting benefits.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Oct 2021 22:32:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress.org blog: WP Briefing: Episode 17: WordPressing Your Way to Digital Literacy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=11316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2021/10/episode-17-wordpressing-your-way-to-digital-literacy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:29419:\"<p>In episode 17 of the WordPress Briefing, Josepha Haden Chomphosy reflects on her WordCamp US keynote and digs into how participating in open source projects can help you learn 21st Century Skills.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References </h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/09/03/wordpress-5-9-planning-roundup/\">WordPress 5.9 Planning</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/08/13/preliminary-road-to-5-9/\">5.9 Target Features</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2021/\">WordCamp US 2021</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-11316\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. See, here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:42</p>\n\n\n\n<p>Today I want to talk to you a little bit about the digital divide, where it is, maybe a bit of where it&#8217;s headed, and which parts of the WordPress open source project and CMS can help. This is a focused look, though, so I won&#8217;t touch on some of the hurdles that everyone is aware of when you get outside of in-person environments, things like parental modeling or supervision, education on the relevance of technology, etc. This is a follow-up to the conversation that I had at WordCamp US last week—and so doing a little bit of a deeper dive here. And we&#8217;re gonna start with what exactly is the digital divide.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:23</p>\n\n\n\n<p>So the digital divide is considered those who benefit from the digital age versus those who don&#8217;t; that feels like a really big concept. And the current discussion is primarily about access, or for years that has been about access anyway, especially physical access. So those who have computers versus those who do not have internet in their homes versus those who do not. But I don&#8217;t necessarily agree with that particular, really focused definition of the problem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:59</p>\n\n\n\n<p>If the only problem we see is access, then the solution becomes to get cheap devices and internet to everyone, which certainly has led to more people being connected than ever before.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:12</p>\n\n\n\n<p>With this proliferation of devices that are considered both smart and mobile (mobile in this context, meaning handheld or pocket-sized), the discussion over the last few years has been shifting. It’s been shifting into more of a discussion around the education around the relevance of internet access, discussions around the quality of access to the Internet, and also discussions around Wi-Fi and dial-up and the surprising cost of data.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:42</p>\n\n\n\n<p>But from my perspective, there are a number of really dangerous assumptions that we make when we boil it all the way down to who has access and the quality of that kind of access.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:54</p>\n\n\n\n<p>The first dangerous assumption is that we run the risk of conflating being tech-savvy with being digitally literate, and they&#8217;re not really the same things. The second assumption that we run the risk of is assuming that access to cellular data equals access to the internet through any other means. And also assuming that cost is always the determining factor.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:19</p>\n\n\n\n<p>And the final fairly dangerous assumption that we&#8217;re making there is that we allow ourselves the ability to mark the digital divide is fixed in our minds. Once we get enough access to everyone, we&#8217;re just done. There is no more divide. But as a way of illustration, if you think about access, not in the context of technology, like high technology, digital technology, and in the context of like writing, you probably own a writing utensil, and you probably have access to paper of some sort, which is great. But just because you have like a pencil and a piece of paper doesn&#8217;t mean that I can send you home right now &#8211; I guess most of you are listening at home.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:07</p>\n\n\n\n<p>It doesn&#8217;t mean that I can send you to your desk right now. And consider you prepared to write a best-selling novel, right? Because giving you physical tools no more makes you a novelist than handing me a computer when I was a teen made me digitally literate.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:24</p>\n\n\n\n<p>So let&#8217;s talk about what it takes to be digitally literate. I&#8217;ve lumped the following skills into three groups. It&#8217;s broadly defined as 21st-century skills, but the groups that I have them in is not a comprehensive list of those 21st-century skills.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:41</p>\n\n\n\n<p>The first group that is a large component of digital literacy is critical thinking skills. So computational thinking and problem-solving. That particular one is not new, exactly. But the computational thinking part certainly is. Not all problems are solved with code, but the basis for thinking through things procedurally is increasingly important.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:04</p>\n\n\n\n<p>The second one in that set is communication through multiple media, consuming communications or content through Twitter, Instagram, Snapchat, or any other format, but also creating the things that communicate—writing blogs, creating videos, both calls and standalone, and forums, things like that.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:27</p>\n\n\n\n<p>The third set in that group of critical thinking skills is around collaboration, which some people will say is more about communication. But I find that collaboration both online and in-person is a skill set all to its own. Communication only gets you so far when you&#8217;re learning to cook to collaborate with people that you don&#8217;t normally work with. And so, I have lumped that into critical thinking skills.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:54</p>\n\n\n\n<p>The second big bucket for digital literacy is actually literally digital literacy. So I have three, three things in here as well. Evaluating information is obviously incredibly important in the environment that we&#8217;re in right now, for just information’s sake. But then things like understanding the differences between copyright versus copyleft licenses, understanding the difference between an .org ending URL and a .com ending URL, and evaluating the general veracity of sources that you&#8217;re finding on the web.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:32</p>\n\n\n\n<p>The second part of that group is media use and creation, understanding the difference between folks who consume and folks who create the content we have, how to find information online, and the most sensible places to keep information online. And the third area of digital literacy that I find to be vitally important is the ethics of licenses both around use and access. So again, things like copyright vs. Copy, copyleft. And specifically for WordPress, that means understanding things like the Creative Commons licenses, GPL, MIT, but then also copyright is its own complicated question unto itself. But the other things that show up for us for WordPress that show up for us with technology are also things like open access versus proprietary information and sources. And things like plagiarism versus sampling.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:33</p>\n\n\n\n<p>And our third big bucket, which has become increasingly complex, but the third big bucket for digital literacy to my mind is actually considered something that I call life skills. So things like self-direction, knowing what you want to do next, and how to get it done. Time management is also in there, knowing how much time something will take and being able to make sure that you are getting things done over time, as opposed to trying to accomplish everything at the last second.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:03</p>\n\n\n\n<p>A big part of these life skills is cross-cultural and social communication. The internet is tricky, right? Because it&#8217;s simultaneously incredibly insular and increasingly global. Like you can if you wanted only ever read things that already confirm your existing biases. But the very nature of the internet, the very nature of the web, means that the world is much smaller. We have more ready access faster to everyone everywhere in the world than we used to have. This means, of course, that cultural awareness is an absolute must now more than ever. This is for what it&#8217;s worth the time of year when I give this talk. And that&#8217;s because of this last part of the life skills section, which is digital citizenship.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:54</p>\n\n\n\n<p>Digital citizenship generally is the second week of October 2 or the third week of October. And it&#8217;s one of my favorite weeks because it is something that comes up all the time in our ecosystem. It comes up all the time and open source in general, but certainly for WordPress. So those are our three big buckets of digital literacy, a subset of 21st-century skills as a whole.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:22</p>\n\n\n\n<p>That&#8217;s a lot of stuff, I know. And it&#8217;s also really hard to figure out how you can learn any of those skills, and from my experience, I really believe that WordPress as an open source project can help people learn those things.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>09:43</p>\n\n\n\n<p>Once upon a time, ages and ages ago, my mother told me that in order for me to become a better writer, I would have to read and in order to become a better communicator, it would probably help if I spent a little bit more time writing, and I have always felt that the same must be true for all the things that we learn, you find a positive example and study it to become better. Or, depending on what you&#8217;re learning and how you&#8217;re trying to learn it, you find a passive example of something that you want to be able to do better from an active standpoint and participate in that so that your active production of the other part is better.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:24</p>\n\n\n\n<p>Here are a few parts of the WordPress project and WordPress itself that can help with this.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>10:31</p>\n\n\n\n<p>So there are first a few really specific teams; if you&#8217;re contributing to a team like Themes, or Plugins, or Core, the three areas of those digital literacy skills that you have an opportunity to learn there. For critical thinking, you&#8217;re going to run into problem-solving and computational thinking. You’re also going to run into distributed collaboration, which was really important as just a concept when I first wrote this talk. And now it is currently really important as a reality because we have a bunch of companies that are going to either remote work or partially distributed or fully distributed. And that&#8217;s the way that WordPress has worked for a pretty long time.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:19</p>\n\n\n\n<p>So I&#8217;ve always felt like it was important because it was important to WordPress, but it&#8217;s also becoming increasingly an important part of just how to exist in the world at the moment. For those three teams, the things that you can really tap into and practice for the life skill section are digital literacy, nope, digital citizenship, self-direction, and time management obviously comes up in any open source project because you are volunteering your time and it is up to you to kind of decide how much you can commit or not various other parts of time management and directing one&#8217;s own project. Now, but you also get the opportunity to test and practice your cross-cultural communication, social communication and learning what it means to collaborate across cultures in that way.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:15</p>\n\n\n\n<p>On the digital literacy side, you also get a little bit of that information evaluation and synthesis for what it&#8217;s worth. And then obviously get to learn more about the ethics of various types of licenses and how use and access relate to those things.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:35</p>\n\n\n\n<p>We also have a team or two; these are not really teams or twos. These are things that you can do that are either solo activities or group activities. One is working or checking out the support forums, and the other is blogging. We’ll start with support forums.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>12:52</p>\n\n\n\n<p>If you&#8217;re doing this as a group activity, there are a couple of extra things that that you can practice here. But suppose you&#8217;re doing it as a solo, just way to give back to the project sort of thing or way to learn some of these skills sort of thing. In that case, you can get almost all of these digital literacy skills woven into working in the support forums, depending on what&#8217;s happening in the moment and the questions people have brought up. But for critical thinking, obviously, you get some problem solving in there, not as much the computational thinking as the procedural thinking part. But you certainly also get to tap into communication with multiple types of media, collaboration in person and online, depending on whether you&#8217;re doing this as a solo effort or a group effort. And then, of course, research, which I didn&#8217;t really bring up in any of those groupings for digital literacy, is certainly a very important part of it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>13:49</p>\n\n\n\n<p>For the digital literacy grouping of skills related to digital literacy, you get to work on evaluating information and, depending on how complicated an answer might be. You can also get that opportunity to practice synthesizing complex information and research, a digital literacy skill. And then, once people have responded to a topic you&#8217;ve answered, you also get to tap into that life skill section. You get to be you get the opportunity to practice digital citizenship related to synchronous or asynchronous conversation. You also get to see more about how cross-cultural communication and collaboration works and social communication across those various boundaries that naturally show up when we&#8217;re working across cultures that way. And as I mentioned previously, information synthesis, as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:53</p>\n\n\n\n<p>The second one that I have mentioned can be like a solo effort or a group effort, depending on what you do. Blogging, for most people who use WordPress, is probably the most common application of how WordPress can help you do stuff. So I often see it as the most relevant and the most immediately accessible to anyone. But you know, you got to meet people where they are. So, I would strongly believe that this is our best way to help people learn these things.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:30</p>\n\n\n\n<p>So blogging for the critical thinking sorts of things, you have an opportunity to practice communication across mediums. You will probably get an opportunity to practice your research skills, chances are, you&#8217;re going to get the opportunity to practice some problem solving, and honestly, like if you&#8217;re hosting your site, problem-solving is going to come up when using WordPress as soon as you add in plugins and themes, because you sometimes kind of have to figure out what&#8217;s working and what&#8217;s not, and what&#8217;s playing nicely with other things and what&#8217;s not. It&#8217;s possible that with blogging, you&#8217;re also going to have an opportunity to get to practice some distributed collaboration. But that&#8217;s probably going to depend on what you&#8217;re doing with your site as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:30</p>\n\n\n\n<p>Licenses and how they apply to the thing that you&#8217;re using feel a bit different when you are the one who&#8217;s creating. And so learning about how those things work and don&#8217;t work and how they can best suit what you&#8217;re trying to do. Blogging is absolutely an excellent opportunity to dig into that a bit and learn a bit more about that. As far as your life skills go,</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:56</p>\n\n\n\n<p>that&#8217;s where you, again, get to practice some digital citizenship by figuring out who your audiences are and also when you have to communicate with them via the comments or any other way that you have built up a feedback mechanism there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:11</p>\n\n\n\n<p>Self-direction obviously will come into this, maybe time management if you are blogging on, I was gonna say on a paid basis, but that&#8217;s not really I don&#8217;t know, on a project basis, like some of us are students and have to write things based on deadlines. And so, you know, self-direction, potentially time management, always cross-cultural communication, social communication, research, all of these things show up in there.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:41</p>\n\n\n\n<p>And, you know, I really believe in this concept of how blogging and bringing people into maintaining a website can teach you all of these skills. Because when I was younger, I was a bad communicator. And now, I am across the board known for my effective communication and my ability to work across cultures. And so the defining moment, which was like a four-year moment, and so not necessarily a moment, but the thing that really made all the difference was when my mom challenged me to write every single day. She had noted that I was not necessarily great at getting from one point to the next. I wasn&#8217;t necessarily great at building my arguments when I had to explain something to people. And she suggested that writing every day would help me tap into this big thing about communication and working with other people collaboration, all of that. And as an adult on the other side of it. Like, I thought she was super wrong when I was younger, because don&#8217;t we all think our parents are wrong when we&#8217;re younger. But as an adult on the other side of it, not only was that an opportunity for me to literally learn how to communicate better. But it also, when I look at it, gave me access to opportunities to practice all sorts of 21st-century skills and digital literacy skills in an environment that was relatively safe. And so, I am a big proponent of this particular one.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:26</p>\n\n\n\n<p>Another team that helps us tap into and practice a lot of our digital literacy skills is the Documentation team. I recommend that you let this be a supervised activity if you&#8217;re doing this with students because, you know, it&#8217;s a wiki. You can put weird things in there on accident or just inaccurate things. So for critical thinking, the primary skill that you&#8217;re going to be able to practice if you&#8217;re working on documentation is collaboration. You would think that it was also like information synthesis and information evaluation. But for a lot of the work that we&#8217;re doing, the documentation exists. And what we&#8217;re looking at is trying to figure out where it no longer matches what is currently in the CMS, or currently in the project or currently in the team, whatever it is that you&#8217;re working on at that moment. And so, it&#8217;s a strong collaborative effort in the WordPress project. You have to have done the general work to figure out what needs to be changed in the documentation. But a lot of times, you need to figure out who has access to make the changes, what has prevented us from making changes in the past, and things like that. And so I say, collaboration is the only one to learn and critical thinking, but it&#8217;s actually a really big one and can take a fair amount of effort in this particular context.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>20:49</p>\n\n\n\n<p>From the digital literacy aspect, of course, there is evaluating information. But this particular type of information evaluation is a little different for documentation. And this actually is true for the Documentation team, for the Training team, and also for the new Learn team. This question is true for all of them. There is a huge difference between presentation versus application of information. The way you present information for people who already know it and just need confirmation of something or are using it for reference material is really different from when people are looking at a piece of documentation that should be telling them how to accomplish something. And they try to apply it either to their own processes at the moment or apply it to teaching other people. And so evaluating information to make sure that what is presented can be applied, and all of the ways that that very complicated journey with managing information can kind of work or not, depending on how things are going in your section of the open source project at the moment.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>21:59</p>\n\n\n\n<p>The third group of skills that you can really dig into in those teams, again, is digital citizenship, basically, everything is digital citizenship in WordPress because we&#8217;re just people online.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:24</p>\n\n\n\n<p>And this final grouping that we have this final team and group of skills. So the Community team is a substantial and far-ranging team; they have many things that fall into their area of expertise. And so this has traditionally kind of functioned as a linchpin around education and ensuring that that was all relevant for users and attendees of events. The Community team will remain pivotal to so many things that we do now. But now that we have really awakened the Learn team and re-enlivened that Training team, this will shift a little over time. But yes, so that grain of salt that depending on when you listen to this, if you listen to it in 2050, maybe it&#8217;s not accurate anymore. Hopefully, most of what I say is not accurate in 2050. But you know, still.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>23:27</p>\n\n\n\n<p>&nbsp;Anyway! Critical thinking that&#8217;s where we were. So the critical thinking group of skills inside the Community team, you are going to have an opportunity to practice problem-solving. And frequently also procedural thinking, depending on what you&#8217;re working on in that team. Multimedia communication is absolutely true. And that&#8217;s true, whether you contribute to the team itself and make sure that the team is functioning and doing their basic tasks. Or if you are organizing an entire event, whether it&#8217;s online or offline or however that is being accomplished.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:07</p>\n\n\n\n<p>Multimedia communication for this particular team is constant for all of their work and something that everyone who works on there gets to practice all the time. For digital literacy, this comes up a lot if what you&#8217;re doing is working through any sort of like programming plans, making sure that what we have in place for events is really excellent. It&#8217;s a really excellent opportunity for practicing the evaluation of information, learning more about media use and creation, and then naturally, everything to do with licenses copyright copyleft, not only for everything that we produce but then also for everyone in the ecosystem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>24:55</p>\n\n\n\n<p>This team helps so many plugins, authors and theme developers, and other groups who participate in the ecosystem understand the nuances of the GPL and why it matters so much to WordPress. And then in the life skill section, there&#8217;s the obvious life skill section, life skills that have come up for all of them—so digital citizenship, cross-cultural and social communication. But also you have the opportunity to tap into that self-direction and time management practice, which probably should also be considered in all of these teams. But, you know, things change as we go.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>25:45</p>\n\n\n\n<p>Those are the most likely digital literacy skills that you would end up practicing in the Community team, depending on how you are participating in the Community team at that moment.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>25:59</p>\n\n\n\n<p>So I said that we would talk a little bit about where this is all headed and what to do next. And like I just said, when I got lost in my own reverie, they&#8217;re like, hopefully, everything that I&#8217;ve shared here is out of date by 2050. Like, if we can come back to this particular podcast, or this presentation, or anything I&#8217;ve ever said, about digital literacy over my time with WordPress. And if we could come back to that in 2050, or, you know, I was going to say, 20 years from now, 2041 feels really close. But, you know, come back to it in the future, and say, that was all really excellent information to know at the moment. And we did do those things. And now, WordPress has proven that open source contribution and collaboration can teach all of the necessary 21st-century skills that anyone would need to survive in the world. And we did do it, that would be really cool. But I don&#8217;t think that that&#8217;s where we&#8217;re headed. Not because I don&#8217;t think people believe in what I&#8217;m saying or care about what I&#8217;m saying. But because it&#8217;s very easy to kind of let these things go at some point.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>27:20</p>\n\n\n\n<p>Even if you at some point, were proficient in all of what is considered 21st-century skills, sometimes our skills don&#8217;t get used very much. And so we lose track of them. And we don&#8217;t know, or we don&#8217;t know how to teach them to other people and various ways to do that. So I hope that when we revisit this in the time capsule of the internet 20 years from now, we can say that was a great explanation. And we learned so much. And we made so many changes in such progress that now we need a new version of this. That&#8217;s really all we can do, always striving to leave the world in a better position than when we found it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>28:07</p>\n\n\n\n<p>All right, that brings us to our small list of big things. I don&#8217;t have a ton to share with you today. But what I do have to share with you is a really big deal. So we are about a week away from the Go/No-Go point of WordPress 5.9. That is the final release of the year. And as soon as we know what is a go or a no go from that meeting on October 12th,&nbsp; everyone is going just to hit the ground running. And so, if you are interested in contributing to that release, either by being a participant in the release squad or leading some part of the release squad. Absolutely. Drop by and let me know because I am interested to know who wants to learn more about doing that. And this is actually something that has gone by. I mentioned at the top that I spoke at WordCamp US.&nbsp; That is still true; I did do it. And so did a bunch of other really excellent presenters. If you missed WordCamp US on Friday, for whatever reason, because you know, life is complicated. Pretty soon, we will have the videos. We&#8217;ll have all the videos up with captions quickly and have those available for everyone to watch and learn more from as their schedule allows and as their attention allows. And that is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphos, and I&#8217;ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Oct 2021 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Gutenberg Times: A Block Pattern Party in more ways than one – Weekend Edition 187\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=19137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://gutenbergtimes.com/a-block-pattern-party-in-more-ways-than-one-weekend-edition-187/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17739:\"<p>Howdy! </p>\n\n\n\n<p>Did you get to watch the fantastic presentations about the block-editor at WordCamp US? No? I am sure they will be posted on WordPress TV in no time. I&#8217;ll keep and eye out. The best presentations from my perspective? </p>\n\n\n\n<ul><li><strong>Helen Hou-Sandi</strong> talked about the adventure building WhiteHouse.gov site within 6 weeks. Her look behind the scenes and the thoughts behind the front page header block build, was a great case study, why to use blocks and not ACF. <a href=\"https://youtu.be/_6-yAZRXY8k?t=19298\">(Recording on YouTube)</a></li><li><strong>Kjell Reigstad</strong> showed some wonderful creative examples how you could use Block Styles for some funky and new way to display blocks. Most with no JavaScript, all in CSS. <a href=\"https://youtu.be/_6-yAZRXY8k?t=23716\">(Recording on YouTube)</a></li><li><strong>Rich Tabor </strong>did a phenomenal job diving into the seven realms of Full-Site Editing and Theme building, with an <a href=\"https://www.figma.com/proto/HAvCFREaCsvXAO1X71RDID/WCUS%3A-Building-Modern-WordPress-Websites?page-id=217%3A148&node-id=235%3A354&viewport=241%2C48%2C0.1&scaling=contain&starting-point-node-id=233%3A136\">exponentially spruced up slide deck</a> and a very soothing voice.  We were all more relaxed about the huge changes to come.  <a href=\"https://youtu.be/_6-yAZRXY8k?t=6725\">(Recording on YouTube)</a></li></ul>\n\n\n\n<p>That was only one day, yesterday, but more things happened in Gutenberg land. What have you been working on? I want to know. Hit reply and tell me:-) </p>\n\n\n\n<p>We have some great posts and videos for you. Did I miss one or two? Let me know that too. </p>\n\n\n\n<p>I&#8217;m excited to see you next week at our <a href=\"https://us02web.zoom.us/webinar/register/4216223029678/WN_TShtABQnRYKrHN6ffMFpaA\">Live Q &amp; A on theme building</a>.</p>\n\n\n\n<p>If you are not a theme builder, maybe you are interested in our upcoming <a href=\"https://us02web.zoom.us/webinar/register/4016325801172/WN_v-EXlrFaRcabGz78jgj8CA\">Live Q &amp; A on block building with members of the BuddyPress team.</a> </p>\n\n\n\n<p>Be well, 💕</p>\n\n\n\n<p>Birgit</p>\n\n\n\n<p>PS: Huge Thank you to <strong>Rob Cairns</strong> for a conversation among friends about my start at Automattic, the beginning of the Gutenberg Times and catch-up  on&nbsp;Full Site Editing. Listen to <a href=\"https://the-sdm-show.castos.com/episodes/episode-154-talking-all-things-gutenberg-with-birgit-pauli-haack?mc_cid=00a6b66a45&mc_eid=09df171d7b\"><strong>Episode #154 of The SDM Show</strong></a> by <a href=\"https://stunningdigitalmarketing.com/\"><em>Stunning Digital Marketing.</em></a></p>\n\n\n\n<p>PPS: Monday, 10/4 at 9am EDT / 2pm UK Time, I&#8217;ll join Nathan Wrigley, Michelle Frechette and Rob Cairns on the <strong>WPBuilds</strong>&#8216; <strong>This Week in WordPress Show</strong>. <a href=\"https://www.youtube.com/watch?v=g9odrdX6dZA\">It will be live streamed on YouTube.</a></p>\n\n\n\n<p>PPS: Don&#8217;t miss the fantastic <strong>Page Builder Summit! Oct 18 &#8211; 22, 2021</strong> &#8211; Schedule below.  </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Gutenberg Development and Team updates </h2>\n\n\n\n<p><strong>Gutenberg 11.6 </strong>was released. Now you can lock certain blocks, edit the site logo image file within the Site Logo block (yay!) and child themes have now basic support for full-site editing and Global Styles. <strong>Nik Tsekouras</strong> has the details for you in his release post: <a href=\"https://make.wordpress.org/core/2021/10/01/whats-new-in-gutenberg-11-6-29-september/\"><strong>What’s new in Gutenberg 11.6 (29 September)</strong></a>. </p>\n\n\n\n<ul><li>Justin Tadlock gave the new version a spin for his article <strong><a href=\"https://wptavern.com/gutenberg-11-6-improves-the-global-styles-ui-adds-child-theme-support\">Gutenberg 11.6 Improves the Global Styles UI, Adds Child Theme Support</a>.</strong> </li><li>Sarah Gooding expanded on the <a href=\"https://wptavern.com/gutenberg-11-6-introduces-new-api-for-locking-blocks\"><strong>New API for Locking Blocks</strong></a>. </li></ul>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  </p>\n\n\n\n\n<p><strong>Kelly Hoffman</strong> posted about the <a href=\"https://wordpress.org/news/2021/09/upcoming-gallery-block-improvements/\"><strong>upcoming improvements to the Gallery block.</strong></a> The silent video loops through many variations of how you can now configure the images in the gallery block. The total revamped Gallery Block is built from individual image blocks, that bring their features into the gallery: you can style each image differently, link each single image to a different URL, apply different duotone filters per image and crop images to fit into a pattern and more. </p>\n\n\n\n<p>You can enable this Gallery block from the <em>Gutenberg plugin&#8217;s Experiments page. </em>If you want to see what happens when your existing gallery change into the new Gallery Block, you click on <a href=\"https://github.com/WordPress/gutenberg/pull/34606\">“Update” button</a> of the the Block&#8217;s Toolbar <em>(new in 11.6)</em>.</p>\n\n\n\n<p>The refactored Gallery block is slated to come to WordPress with the 5.9 release. If you are a plugin or theme developer, <a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Glen Davies published a Dev Note last month. </a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Maggie Cabrera</strong> publish the <strong><a href=\"https://make.wordpress.org/themes/2021/10/01/gutenberg-themes-week-of-september-27-2021/\">67th Gutenberg + Themes Round-up</a></strong> post from the Themes team with a list of ongoing discussions on Full-Site Editing, Global Styles, and Design Tools. Just as examples: </p>\n\n\n\n<ul><li>A discussion on <a href=\"https://github.com/WordPress/gutenberg/issues/34717\">Implicit Text, Hover, Focus Colors as Part of Color Palette</a>, or </li><li><a href=\"https://github.com/WordPress/gutenberg/issues/35114\">Whether to allow targeting&nbsp;<code>settings</code>&nbsp;that are specific to the block in theme.json file</a>. </li><li>You can also <a href=\"https://github.com/WordPress/gutenberg/issues/34574\">follow along the progress of the <strong>Global Style Interface</strong></a> via this overview issues. </li></ul>\n\n\n\n<p>There are quite a few more aspects listed, and they all could use your thoughts and ideas. It&#8217;s the place to be part of the discussion and influence development and designs. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Shaun Andrews</strong> posted the recording and summary of the <a href=\"https://make.wordpress.org/design/2021/09/30/sept-2021-show-tell-recording/\"><strong>Design team&#8217;s Show &amp; Tell meeting.</strong></a> The meeting is mostly meant to catch up all design contributors on various stages of their work. </p>\n\n\n\n<p>In this meeting </p>\n\n\n\n<ul><li><strong>Tammie Lister</strong> talked about Block Support and how it is handled for individual blocks, in theme.json and block.json</li><li><strong>Javier Arce</strong> shared his designs for editing background in an image block images, and </li><li><strong>Channing Ritter</strong> discussed her exploration around Theme switching in the Site Editor. </li></ul>\n\n\n\n<h2>Full Site Editing and Themes </h2>\n\n\n\n<p>There are now many conversations about Full-Site Editing and how can site builders, agencies, designers and freelancers get a handle on the various pieces, that make up Full-Site Editing. <strong>Anne McCarthy</strong> published a longer post on <a href=\"https://nomad.blog/2021/09/29/sharing-approaches-for-fse-feature-adoption/\"><strong>Sharing Approaches for Adoption of Full-Site Editing</strong></a> in the WordPress ecosystem. She suggested a gradual adoption with increasing levels of complexity and maturity”. Quite an interesting read. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Andres Noren</strong> published and <strong><a href=\"https://andersnoren.se/introducing-tove/\">introduction to his new block-based Theme &#8220;Tove&#8221;</a></strong> in which he lets you look behind the scenes. I found remarkable the comparison of this new theme with his latest classic theme: </p>\n\n\n\n<p>&#8220;Tove contains a theme.json file that specifies supported settings and styles, HTML template files and template parts used by the Site Editor, a couple of stylesheets, placeholder image assets, a folder with block patterns, and a functions.php file to enqueue assets and register block patterns and styles. That’s Tove. <em>Not a single line of JavaScript, and other than the functions.php file and a empty index.php file, no PHP either.</em></p>\n\n\n\n<p>Compare that to&nbsp;<a href=\"https://andersnoren.se/teman/eksell-wordpress-theme/\">Eksell</a>, my latest (and probably last?) free classic theme. Eksell has 1 700 lines of PHP in its functions.php and template-tags.php files, five PHP classes in five files, and over 1 000 lines of JavaScript (not counting the CSS variables ponyfill).&nbsp;“</p>\n\n\n\n<p class=\"has-secondary-color has-light-background-background-color has-text-color has-background\"><em>You will get an opportunity to connect with Anders Noren on Thursday together with Ellen Bauer and Carolina Nymark when we discuss going <a href=\"https://us02web.zoom.us/webinar/register/4216223029678/WN_TShtABQnRYKrHN6ffMFpaA\"><strong>from classic themes to Block-based Themes on our Live Q &amp; A.</strong></a> Get your seat <a href=\"https://us02web.zoom.us/webinar/register/4216223029678/WN_TShtABQnRYKrHN6ffMFpaA\">now!</a> </em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://wpblockpatterns.com/\">WPBlockPatterns.com</a></strong> is a site where you can compare, how the Patterns available in the WordPress.org directory perform with each Full Site Editing theme. On the first page of the site, you see the list of the block patterns from the directory. Once you click on  the <em>name of the pattern</em> a new window opens, and you can then select the theme from a drop-down box on the top right. </p>\n\n\n\n<img />\n\n\n\n<p><strong>Andrew Starr</strong>, owner of UX Themes and author of the <a href=\"https://wordpress.org/themes/hansen/\">Hansen theme</a>, created the site and <strong>Justin Tadlock</strong> connected with him for more details: <strong><a href=\"https://wptavern.com/preview-wordpress-block-pattern-and-theme-combinations-via-new-site\">Preview WordPress Block Pattern and Theme Combinations via New Site</a></strong>.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Tammie Lister </strong>started a new project: <strong><a href=\"https://ephemeralthemes.com/2021/10/01/a-block-pattern-a-day/\">A Block Pattern a Day</a></strong>. On her new site, <a href=\"http://patternspiration.com/\">Patternspiration</a>, she will publish a new pattern every day to explore all the possibilities with Block Patterns, and to get an idea on what tooling would be needed around it. Definitely a place to watch. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> published the <a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">10th call for testing</a> out of the Full-site editing outreach program and calls you to <strong><a href=\"https://make.wordpress.org/test/2021/09/29/fse-program-testing-call-10-pattern-party/\">join the Pattern Party</a></strong>, too! You are invited to test all the Theme Blocks, some already in WordPress 5.8 and some to come in WordPress 5.9 and create patterns with them. <em>&#8220;This test is focused on pushing these lovely Theme Blocks to their limits to better determine what to prioritize and what features might remain to be documented. &#8220;</em> McCarthy wrote. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://us02web.zoom.us/webinar/register/WN_peXesSoYRIOZUEd9eK0l-g\">Developing for the new wave of WordPress experience</a></strong> On&nbsp;<a href=\"https://us02web.zoom.us/webinar/register/WN_peXesSoYRIOZUEd9eK0l-g\" target=\"_blank\" rel=\"noreferrer noopener\">Tuesday, Oct 5 at 01:30 PM CST</a>, join <strong>Post Status </strong>CEO,&nbsp;<strong>Cory Miller</strong>, as he interviews&nbsp;<strong>Rich Tabor</strong>, Head of Product at&nbsp;Extendify, about the future of publishing with WordPress. Definitely a show worth watching! </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>WordPress Meetup London</strong> met this week, and during their 2nd hour they held a <strong><a href=\"https://youtu.be/k3HGkySWESk?t=4269\">Roundtable on Full-Site Editing</a></strong> hosted by Dan Maby guest Paul Lacey, Diane Wallace and Anne McCarthy.</p>\n\n\n\n<a href=\"https://youtu.be/k3HGkySWESk?t=4269\"><img /></a>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total\" /></p>\n\n\n\n\n<h2>Using Gutenberg as Content Creator</h2>\n\n\n\n<p><strong>Istiak Rayhan</strong> shared with you the <a href=\"https://bloggingwizard.com/gutenberg-features/\"><strong>10 Interesting Gutenberg Features You May Not Know About</strong></a>. Rayhan pointed out most of my favorite features of the Block editor. He is also one of the authors of the Ultimate Blocks plugins, so it&#8217;s not a surprise to see it listed. </p>\n\n\n\n<p>Instead of the Document information page, I would pick the <strong><a href=\"https://make.wordpress.org/core/2021/06/09/core-editor-improvement-improve-your-workflow-with-list-view/\">List View</a></strong> next to it as the more useful tool for your workflow. You can identify blocks from their nested view and drag and drop them at a different spot of your post. </p>\n\n\n\n<p>Rayhan followed up with a <a href=\"https://bloggingwizard.com/gutenberg-block-editor/\"><strong>Beginner&#8217;s Guide for Gutenberg.</strong></a> I bookmarked his post to share it with others looking to get started with the block-editor. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 id=\"pagebuilder\">Page Builder Summit</h3>\n\n\n\n<p><strong><a href=\"https://pagebuildersummit.com/\">Page Builder Summit</a></strong> is coming back and will be happening <strong>October 18 &#8211; 22, 2021. </strong>Nathan Wrigley and Anchen Le Roux <a href=\"https://pagebuildersummit.com/schedule/\"><strong>just published the schedule</strong></a></p>\n\n\n\n<p>Here is the list of Gutenberg / Block-editor presentations </p>\n\n\n\n<ul><li><strong>Forging the Future with Full Site Editing</strong> with Anne McCarthy (10/18 &#8211; 9am EDT)</li><li><strong>The Future of Building WordPress Websites </strong>with Brian Gardner (10/18 &#8211; 12pm EDT)</li><li><strong>What does Full Site Editing Mean for Page Builders?</strong> with Joe Casabona (10/19/ 9am EDT)</li><li><strong>Customizing WordPress Block Editor for Client Projects </strong>with Birgit Pauli-Haack (10/19/ &#8211; 10 am EDT)</li><li><strong>Mastering modern WordPress with Full-site Editing &amp; Custom Blocks</strong> with Rob Stinson (10/20/ &#8211; 5am EDT)</li><li><strong>How to Build Any Page Layout Using Kadence Blocks</strong> with Jake Pfohl (10/20/ &#8211; 12pm EDT)</li><li><strong>Building a Custom Blog Archive with Blocks</strong> with Mike Oliver (10/21/ 11am EDT)</li><li><strong>RIP Page Builders</strong> with Chris Lubkert (10/19 &#8211; 1pm EDT)</li></ul>\n\n\n\n<p>The schedule is not out yet. <a href=\"https://pagebuildersummit.com/\"><strong>Sign-up for the waitlist</strong></a> to receive notifications.</p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n\n<p>Featured image: <a href=\"https://www.flickr.com/photos/10104201@N00/4672495978\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Fire wood&#8221;</a>&nbsp;by&nbsp;<a href=\"https://www.flickr.com/photos/10104201@N00\" target=\"_blank\" rel=\"noreferrer noopener\">rossbelmont</a>&nbsp;is licensed under&nbsp;<a target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC-SA 2.0</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Oct 2021 15:40:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Logtivity: A WordPress Activity Log Service With Customizable Charts, Alerts, and CSV Exports\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=122600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"https://wptavern.com/logtivity-a-wordpress-activity-log-service-with-customizable-charts-alerts-and-csv-exports?utm_source=rss&utm_medium=rss&utm_campaign=logtivity-a-wordpress-activity-log-service-with-customizable-charts-alerts-and-csv-exports\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6238:\"<p class=\"has-drop-cap\">Launched by Ralph Morris and Steve Burge in June this year, <a href=\"https://logtivity.io/\">Logtivity</a> is a plugin and service that allows site owners to track everything that happens on their WordPress installs. The duo has made continual updates to the plugin since. In the past couple of months, they have added deep integration with Easy Digital Downloads. They are also planning to build around more eCommerce-related plugins.</p>\n\n\n\n<p>Burge mentioned that using the Logtivity service allows site owners to track and log activity at scale. While small sites could get by with an on-site solution, it can be harder to do while growing. &ldquo;This offers a strong alternative to using a plugin because you don&rsquo;t need to store huge amounts of data on your own server,&rdquo; he said.</p>\n\n\n\n<p>The service provides graphs so that end-users can visualize their data, but they can also dive directly into the logs and look at specific actions. Users can also set up unlimited alert notifications through email or Slack and download reports as CSV files.</p>\n\n\n\n<img />Site dashboard showing different chart types.\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/logtivity/\">Logitivity WordPress plugin</a> is free to download and install, but it merely serves as a bridge to the commercial service. The <a href=\"https://logtivity.io/pricing/\">pricing page</a> has three tiers that start at $9.50/month and run to $49.50. The rates primarily differ on the number of logs generated, user access, and length of data retention. However, each tier can be used on an unlimited number of sites.</p>\n\n\n\n<p>I have been running the service on WP Tavern for a couple of weeks. There are not many things I would want to track specific to this site other than posts published and commenting numbers. The short-term data has not told me much that I did not know already. However, I could see how these logs could come in handy over months or years. If we were running an eCommerce website, the information could be invaluable.</p>\n\n\n\n<img />Viewing a specific set of logs based on an action.\n\n\n\n<p>Users can create reports of specific logs and display them as either bar or line charts. These can be generated based on an action, such as &ldquo;Post Published&rdquo; or &ldquo;Comment Created.&rdquo; Users can also add a specific context, such as a post ID. For example, a user could display a chart for each product file download through the plugin&rsquo;s deep integration with Easy Digital Downloads.</p>\n\n\n\n<p>This is the type of thing that the team has in mind at the moment. The primary use case since launch has been logging eCommerce activity.</p>\n\n\n\n<p>&ldquo;People who run eCommerce sites need to track registrations, subscription changes, file downloads, license key activations, login activity, and more,&rdquo; said Burge. &ldquo;eCommerce site owners need this for customer support and also to deal with refund requests and chargebacks.&rdquo;</p>\n\n\n\n<p>Currently, each of the service&rsquo;s features is handled via the Logtivity site. The team has plans to bring them into the WordPress admin interface. However, it could be late 2021 or early 2022 before the integration happens.</p>\n\n\n\n<p>&ldquo;We&rsquo;d love to bring Logtivity data directly into WordPress,&rdquo; said Burge. &ldquo;And because there&rsquo;s no need to worry about Logtivity slowing down your site, we have some interesting ideas for how and where user activity can be displayed in the WordPress admin area.&rdquo;</p>\n\n\n\n<h2>How It Started and Where It Is Going</h2>\n\n\n\n<p class=\"has-drop-cap\">Burge serves as the marketing brains behind the project. His primary WordPress-related business is <a href=\"https://publishpress.com/\">PublishPress</a>, but his customers had asked for a project like Logitivity for several years.</p>\n\n\n\n<p>&ldquo;Ralph Morris started Logtivity for a customer at the web dev agency he works at,&rdquo; said Burge. &ldquo;The customer&rsquo;s site has around 100,000 users and gets a great deal of activity every day, from new registrations and subscriptions to resources being downloaded and cancellations. They were using a WordPress plugin to track customer activity, but as the number of logs grew, this process took longer and longer and became more clunky to perform. The final straw was when they were unable to perform the CSV exports, as it would keep timing out. Ralph scratched the itch and built a little MVP. After a few weeks, he showed it to his colleagues and got permission from his boss to offer it to the client to be the first user, and a little while later, the first paying customer.&rdquo;</p>\n\n\n\n<p>He said the two connected thanks to Iain Poulson, who recently <a href=\"https://wptavern.com/alex-denning-and-iain-poulson-launch-flipwp-an-acquisitions-marketplace-for-wordpress-companies\">co-launched the acquisitions marketplace FlipWP.</a></p>\n\n\n\n<p>&ldquo;Ralph lives really close to where I grew up in Hampshire, England,&rdquo; said Burge. &ldquo;We got our heads together and decided on a partnership: Ralph as the developer and myself as the marketer.&rdquo;</p>\n\n\n\n<p>Outside of integrating more directly with the WordPress admin, the Logtivity team has a roadmap that will keep them busy for a while. Topping that list are more integrations with third-party plugins.</p>\n\n\n\n<p>&ldquo;Our primary use-case is eCommerce sites, so WooCommerce is central to our plans,&rdquo; said Burge. &ldquo;But we also plan deeper integrations with more plugins that WordPress eCommerce sites use, including LearnDash, MemberPress, Paid Memberships Pro, and more.&rdquo;</p>\n\n\n\n<p>Several players in the space are moving toward broad integrations across the ecosystem. Chris Lema talked about it being a vital strategy for business growth with StellarWP&rsquo;s recent <a href=\"https://wptavern.com/stellarwp-acquires-learning-management-system-learndash\">acquisition of LearnDash</a>.</p>\n\n\n\n<p>Burge also noted that his team plans to continue improving the service&rsquo;s alert system. &ldquo;In future versions of Logtivity, you&rsquo;ll be able to send more flexible alerts to more channels. We also plan to provide SMS alerts for your most important notifications.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Oct 2021 21:49:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.2.1 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2130\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://blog.akismet.com/2021/10/01/version-4-2-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:559:\"<p>Version 4.2.1 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update contains a fix for a bug in version 4.2 that could cause AMP validation errors on some sites, depending on the template they were using.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Oct 2021 18:31:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Gutenberg 11.6 Introduces New API for Locking Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/gutenberg-11-6-introduces-new-api-for-locking-blocks?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-11-6-introduces-new-api-for-locking-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3311:\"<p><a href=\"https://wptavern.com/gutenberg-11-6-improves-the-global-styles-ui-adds-child-theme-support\">Gutenberg 11.6</a> was released this week with a <a href=\"https://github.com/WordPress/gutenberg/pull/32457\">new API for managing lock control at the block-type level</a>. When defining a block, developers can now use the lock attribute to designate whether a block can be moved or removed. The PR introduces parts of the locking support mechanisms proposed by Matias Ventura in a separate <a href=\"https://github.com/WordPress/gutenberg/issues/29864\">issue</a> earlier this year.</p>\n\n\n\n<p>Ventura explained that while the editor already has template locking support to prevent inserting or moving blocks (i.e. for custom post type templates), it doesn&rsquo;t yet offer much granular control or a UI for the different locking states. He identified block themes as an important use case for establishing a new block-level API for representing&nbsp;<code>lock</code>&nbsp;status. Block themes may necessitate the ability to lock down key elements, such as preventing the removal of the post-content for a single post template. If you have ever played around with the template editor then you have likely discovered how easy it is to remove important elements by accident. </p>\n\n\n\n<div class=\"wp-block-image\"><img /><a href=\"https://github.com/WordPress/gutenberg/issues/29864\">Block locking UI mockup</a></div>\n\n\n\n<p>&ldquo;Another use case that we&rsquo;re building for is having a Checkout Block with different blocks that act as fundamental steps,&rdquo; WooCommerce and Gutenberg engineer Seghir Nadir said. &ldquo;We don&rsquo;t want people to delete or move those steps since they&rsquo;re fundamental and their order is also important, but we want to allow people to select them, access settings, and insert blocks in between them.&rdquo;</p>\n\n\n\n<p>During this week&rsquo;s <a href=\"https://make.wordpress.org/core/2021/09/30/editor-chat-summary-29th-september-2021/\">core editor chat</a>, Paal Joachim Romdahl highlighted the need for a locking mechanism for Reusable blocks.</p>\n\n\n\n<p>&ldquo;At the moment it is too easy to make an accidental change to a Reusable block,&rdquo; Romdahl said. &ldquo;I worry that only having the hover overlay and the initial click [to] select the parent Reusable block is just not good enough, that we soon should get a lock mechanism in place. There is a lot of feedback from users who have accidentally deleted the inner contents of the blocks and wondered what happened.&rdquo;</p>\n\n\n\n<p>Romdahl has created several <a href=\"https://github.com/WordPress/gutenberg/issues/32461\">issues</a> about to the possibility of <a href=\"https://github.com/WordPress/gutenberg/issues/31163\">adding a locking mechanism to the inline toolbar for reusable blocks</a>, where users would need to unlock to edit the contents.</p>\n\n\n\n<p>Now that the foundational infrastructure is in place for managing lock control at the block-type level, contributors can begin building a UI to control it, as outlined in the <a href=\"https://github.com/WordPress/gutenberg/issues/29864\">Locking and TemplateLocking</a> issue. Ventura said future iterations should include a UI that indicates which blocks are user-editable and also display block status in the list view and block inspector.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Oct 2021 05:00:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Gutenberg 11.6 Improves the Global Styles UI, Adds Child Theme Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123580\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/gutenberg-11-6-improves-the-global-styles-ui-adds-child-theme-support?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-11-6-improves-the-global-styles-ui-adds-child-theme-support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6450:\"<p class=\"has-drop-cap\">Gutenberg 11.6 <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v11.6.0\">landed yesterday</a>. Contributors added dozens of enhancements and bug fixes. Admittedly, there was not a whole lot that excited me as a user about this release.</p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/pull/31623\">Typography options</a> for the Post Title block. <em>Nice.</em></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/pull/31607\">Cropping</a> for the Site Logo. <em>A necessary addition.</em></p>\n\n\n\n<p>Toolbar button for <a href=\"https://github.com/WordPress/gutenberg/pull/34606\">converting old Gallery blocks</a> to the new &mdash; still experimental &mdash; format. <em>Sweet.</em></p>\n\n\n\n<p>For the most part, the release felt like a slew of routine enhancements that have been in the pipeline for those of us closely following the plugin&rsquo;s development. Almost boring. And that is not a bad thing at all. Less excitement and smaller doses of iterative improvements can be healthy for the project and its developers. We do not always need to feel like we are chasing the next big thing. This is a well-rounded release that polishes many areas, from navigation to widgets to general block enhancements.</p>\n\n\n\n<p>There were two features that I am happy to see movement on. That is the site editor&rsquo;s Global Styles system and child theme support.</p>\n\n\n\n<h2>Global Styles Updates</h2>\n\n\n\n<img />Default site editor look with Global Styles panel open.\n\n\n\n<p class=\"has-drop-cap\">Global Styles is the system that will truly connect end-users to theme developers and vice versa for the first time in WordPress history. We have made some attempts at this, such as the customizer. However, this feature will handle it on top of the standardized block system.</p>\n\n\n\n<p>Essentially, themes will <em>talk</em> to WordPress through their <code>theme.json</code> files, and users will speak the same language through the Global Styles panel.</p>\n\n\n\n<p>For example, imagine a theme author sets up the default text color as black and the background as white. This will appear on the front end of the site but also be reflected in the site editor. The Global Styles interface allows users to change those two colors to something they prefer.  They can also see of a <a href=\"https://github.com/WordPress/gutenberg/pull/34991\">preview of their color and typography styles</a> in the box at the top of the panel.</p>\n\n\n\n<img />Updating colors, preview shown in editor and at top of panel.\n\n\n\n<p>And, it does not stop at a couple of simple colors. Users can modify all sorts of design aspects like typography and spacing at the root and block levels.</p>\n\n\n\n<p>Gutenberg 11.6 adds a <a href=\"https://github.com/WordPress/gutenberg/pull/34885\">navigation component</a> to the Global Styles sidebar. Overall, it feels much smoother working through the top and sub-levels while editing my theme&rsquo;s styles.</p>\n\n\n\n<img />Updating the global padding for the Code block.\n\n\n\n<p>This is sort of a small but vital step toward <a href=\"https://github.com/WordPress/gutenberg/issues/34574\">overhauling the overall Global Styles interface</a>. There is still much work to be done, but I am eager to see where the Gutenberg contributors take this component in the coming weeks and months.</p>\n\n\n\n<p>I did run into one snag. Clicking on the Typography tab at the root level produces an error. However, it works at the block level.</p>\n\n\n\n<p>Contributors also updated the old &ldquo;Aa&rdquo; icon representing the Global Styles panel with a <a href=\"https://github.com/WordPress/gutenberg/pull/34871\">half-dark-half-light circle button</a>. My immediate reaction was that it was for switching between light and dark modes.</p>\n\n\n\n<p>This was a <a href=\"https://github.com/WordPress/gutenberg/issues/20873#issuecomment-923241684\">sentiment shared</a> by a user (from a now-deleted account) in the GitHub ticket.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Global Styles is not a new system disconnected from styles and themes, indeed is an improvement to the current themes system. If we were to consider the strength of WordPress&rsquo; past and present, we would perceive that on the dashboard, indeed a brush icon has been developed for years in people&rsquo;s memory as an association with appearance, themes, styles, personalization. Therefore, the icon that would be most comprehensible in people&rsquo;s memory regarding the new Customizer remains a brush. I say new and better Customizer, because this is how common people manifest what they understand about Global Styles. Departing from a pencil brush to yin-yang, moon, or water drop, I have not tested yet with public, but from past experience I assure you people are going to find this new icon unrelated and confusing.</p></blockquote>\n\n\n\n<h2>Block Child Theme Support</h2>\n\n\n\n<p class=\"has-drop-cap\">As one of the pioneers of child theming in WordPress, using them long before they were officially supported, this is something near and dear to my heart. I created my first theme shop on this foundation. I have loads of ideas about how the block paradigm can reshape the theme space, and child themes are at the center of many of them.</p>\n\n\n\n<p>However, all of the components of Full Site Editing have not entirely supported child themes until now. There are still a few pieces left to fit into the puzzle, but the system should work, mostly.</p>\n\n\n\n<p>Templates, template parts, and <code>theme.json</code> files from a child theme should now completely <a href=\"https://github.com/WordPress/gutenberg/pull/34354\">overrule those from the parent</a>. These changes work on both the front end and in the site editor.</p>\n\n\n\n<p>Some open questions are being worked through in a <a href=\"https://github.com/WordPress/gutenberg/issues/25612\">related GitHub ticket</a>. The most crucial development is still to come, which will handle merging values between the parent and child <code>theme.json</code> files. For example, it makes sense that child themes should be able to overwrite colors and typography while skipping definitions for layout-related values, falling back to the parent.</p>\n\n\n\n<p>Once that is in place, designers will have an easy-yet-powerful way to realize the original vision behind <a href=\"http://www.csszengarden.com/\">CSS Zen Garden</a>, a project that at least partially inspired child theming&rsquo;s adoption by WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Oct 2021 01:45:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Akismet: Version 4.2 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2126\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://blog.akismet.com/2021/09/30/version-4-2-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:735:\"<p>Version 4.2 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n<ul>\n<li>Improved compatibility with the most popular contact form plugins, which should lead to improved accuracy.</li>\n<li>Added links to additional information on API usage notifications.</li>\n<li>Reduced the number of network requests required on a comment page when running Akismet.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Sep 2021 18:55:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.org blog: People of WordPress: Yordan Soares\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11279\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/09/people-of-wordpress-yordan-soares/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11843:\"<p><strong>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories.</strong> </p>\n\n\n\n<p><strong>To coincide with International Translation Day and the final day of the <a href=\"https://wptranslationday.org/\">2021 WordPress Translation celebration</a>, we feature the story of a WordPresser who has made a major impact in the polyglots team. </strong></p>\n\n\n\n<h2>Beyond software, meeting the WordPress community</h2>\n\n\n\n<img width=\"600\" height=\"600\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/09/yordan-min-300x300@2x.jpg?resize=600%2C600&ssl=1\" alt=\"\" class=\"wp-image-11299\" />\n\n\n\n<p>For Yordan Soares from South America, finding WordPress also meant discovering friends, community, and opportunities. He had not expected to find a whole global movement behind the web development software.</p>\n\n\n\n<p>Yordan, who is from Venezuela, South America, said: “The first time I used WordPress, I had no idea what was going on behind the software or beyond it. I knew there was someone making it all work, but I couldn’t even remotely imagine all the people who were making WordPress not just a tool for developing websites, but a whole movement that comes together to share, build, and help make the world better.”<br /></p>\n\n\n\n<h2>Turning your hobby into your job</h2>\n\n\n\n<p>Initially, Yordan earned his income from computer technical support and installing networks for small and medium-sized businesses. Back in 2005, web development and code-writing was just a hobby. When he discovered the concept of CSS and how it could make everything dynamic. This opened up a whole new career pathway for him.</p>\n\n\n\n<p>In 2010, an introduction to WordPress through a friend opened up a future he had not imagined. He stopped using any other content management system (CMS) and wanted to explore how much he could do with the platform.</p>\n\n\n\n<p>Three years later in 2013, he was able to take his WordPress journey further by starting a small advertising agency with some of his friends. During this time, they crafted commercials for local radio and TV stations. Through WordPress, they found it easy to build more than 15 websites for businesses in a market that previously had not valued the importance of having an online presence.</p>\n\n\n\n<p>He said: “We were working for almost four years until at the end of 2017 the economic crisis in Venezuela became too acute, and we decided to close the agency when we stopped making profits. Taking stock of that period, I think we changed the way merchants saw the Internet business in the city.”</p>\n\n\n\n<h2>Working full time as a freelancer</h2>\n\n\n\n<p>One year on in 2018, Yordan began to freelance full-time as a web developer. His first clients were primarily agencies and friends who had emigrated to other countries. Later, he expanded into freelance marketplaces.</p>\n\n\n\n<p>At that time, getting started as a freelancer was quite a challenging task in Venezuela. The first hindrance was getting a fair level of recompense. Additionally, the deteriorating conditions in the country with constant blackouts and internet connection failures complicated matters.</p>\n\n\n\n<p>At the time, Yordan was living in Guarenas, where the situation was relatively better. He managed to get a reasonably uninterrupted electricity supply with adequate internet speed, which was just good enough to complete his projects.</p>\n\n\n\n<h2>Meeting the WordPress community</h2>\n\n\n\n<p>“Surely if I hadn’t met the community, I would have continued to work on my own, like a lone wolf, doing the ordinary work of solving problems for occasional customers and paying my bills,” he said.</p>\n\n\n\n<p>Living in Guarenas, Yordan began to experience stability in his career and made new friends and contacts. He began looking for co-working spaces or technology communities nearby, and that’s when he met the WordPress community in Caracas.</p>\n\n\n\n<p>He quickly signed up for the first face-to-face event. As soon as the event concluded, he went to talk to the co-organizer and offered his help. He was inspired to help with designing promotional pieces, managing social networks, and organizing events.</p>\n\n\n\n<p>Through such events, he met and connected with several people living in nearby cities.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img width=\"120\" height=\"300\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/09/WP_Guarenas-Guatire-120x300-1-120x300.png?resize=120%2C300&ssl=1\" alt=\"\" class=\"wp-image-11300 size-medium\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-normal-font-size\"> A few months later, with other WordPress users in the area, the idea emerged to start a new Guarenas-Guatire meetup group. The idea became a reality by December 2019, when they applied to the WordPress community team. </p>\n\n\n\n<p>Once the final approvals came in, the team started scheduling the activities. The <a href=\"https://www.meetup.com/wordpress-meetup-guarenas-guatire/\">WordPress Guarenas-Guatire Meetup</a> was officially recognized!</p>\n\n\n\n<p>During the first quarter of 2020, just before the pandemic, Yordan and colleagues organized five face-to-face events. With the worldwide lockdown, in-person community engagements came to a halt. However, the Guarenas-Guatire community was eager to continue meeting.</p>\n</div></div>\n\n\n\n<p>To keep the community active and motivated, and with the support of sponsors, they started organizing online events under a format called “WordPress a la medianoche” (WordPress at midnight).</p>\n\n\n\n<p>The format of these events was inspired by Alexis Arnal, who suggested meeting at midnight to make the most of the internet speed that would usually improve somewhat after that time!</p>\n\n\n\n<p>At the time of writing, Yordan and the team have organized 16 WordPress a la medianoche events with an attendance of up to 50 people per online gathering. An impressive audience which enabled a comparatively small meetup to keep communications flowing at a difficult and unprecedented time.</p>\n\n\n\n<p>One positive of such events, is an opportunity to invite people from other countries and run sessions in partnership with others. An example was a special translation event with Javier Esteban, a member of the translation team from Spain. The meetup also invited contributors from Mexico, Costa Rica, Peru, and Colombia who were happy to participate.</p>\n\n\n\n<h2>Strengthened by the community</h2>\n\n\n\n<img width=\"632\" height=\"241\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/09/wp-translation-2020.jpg?resize=632%2C241&ssl=1\" alt=\"\" class=\"wp-image-11307\" />Yordan (pictured bottom left) speaking at the WordPress Translation Day 2020 events\n\n\n\n<p>Yordan believes that he would have continued to work on his own had he not met the WordPress community.</p>\n\n\n\n<p>He said: &#8220;Fortunately, this was not the case and I have been able to live a lot of transforming experiences that have shown me the meaning of the words &#8216;community&#8217; and &#8216;volunteerism&#8217;.&#8221;</p>\n\n\n\n<p>Yordan felt empowered by the community and it led him to volunteer for many other roles and activities, including Locale Manager for <a href=\"https://translate.wordpress.org/locale/es-ve/\">Spanish Venezuela</a>, a moderator for <a href=\"https://make.wordpress.org/tv/\">WordPress.tv</a>, and as a <a href=\"https://make.wordpress.org/support/\">support</a> contributor in the forums helping people with technical issues. He has also developed free plugins for the official WordPress directory and <a href=\"https://wordpress.tv/speakers/yordan-soares/\">spoken at community events</a> including <a href=\"https://spain.wordcamp.org/2020/session/actualizaciones-automaticas-para-tus-plugins-y-temas-personalizados/\">WordCamp Spain 2020</a>.  </p>\n\n\n\n<p>All this has a boomerang effect, Yordan explains. These experiences helped him grow personally and professionally, as it’s always rewarding to know that you’ve helped improve the WordPress ecosystem.</p>\n\n\n\n<p>He also likes being able to directly help people when they need it and feels it is a two-way learning process.</p>\n\n\n\n<p>&#8220;At first, when I told my family and friends about the community and the work I was doing, they would ask me &#8216;what do you get in return?&#8217; Perhaps they expected me to tell them a specific amount of money, but the answer is more complex,&#8221; he said.</p>\n\n\n\n<p>&#8220;It’s rewarding to know that you’ve helped improve the WordPress ecosystem, the tool you use to work and put food on the table.&#8221;</p>\n\n\n\n<p>During his journey, Yordan has met many wonderful people with common interests and values, and the best part is that many of these people are now his friends, business partners, or customers.</p>\n\n\n\n<p>At the same time, he has learned new skills and gained experience, which have given him a significant confidence boost in facing difficult situations that may come in life.</p>\n\n\n\n<img width=\"632\" height=\"332\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/10/special-acknowledgement-yordansoares.png?resize=632%2C332&ssl=1\" alt=\"Polyglots special appreciation. Yordan Soares. \" class=\"wp-image-11320\" />\n\n\n\n<p>As part of the <a href=\"https://wordpress.org/news/2021/09/join-us-for-wordpress-translation-day-global-events-in-september-2021/\">WordPress Translation Day 2021</a> celebrations, Yordan was nominated for his contribution to the work of the Polyglots Team translating WordPress. The full nominations list and stories will be published in October and November on the <a href=\"https://wptranslationday.org/\">WordPress Translation Day website</a>. Check out the <a href=\"https://make.wordpress.org/polyglots/2021/09/30/30-days-of-translation-celebration/\">final events for International Translation Day</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>), Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>lmurillom</a>), Maedah Batool (<a href=\"https://profiles.wordpress.org/maedahbatool/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>maedahbatool</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>), and Nalini (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nalininonstopnewsuk</a>) for work on this story. Thank you to Yordan Soares (<a href=\"https://profiles.wordpress.org/yordansoares/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yordansoares</a>) for sharing his Contributor Story, and to Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>topher1kenobe</a>) for their support of the series. The WordPress Guarenas-Guatire logo on this page was designed by <a href=\"https://profiles.wordpress.org/bragnieljimenez/\">Bragniel Jimenez</a> </p>\n\n\n\n<p>This People of WordPress feature is inspired by an article originally published on HeroPress.com, a community initiative created by Topher DeRosia. The initiative highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard. Meet more WordPressers in our <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series.</a></p>\n\n\n\n<p>#ContributorStory #HeroPress</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Sep 2021 13:14:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Preview WordPress Block Pattern and Theme Combinations via New Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"https://wptavern.com/preview-wordpress-block-pattern-and-theme-combinations-via-new-site?utm_source=rss&utm_medium=rss&utm_campaign=preview-wordpress-block-pattern-and-theme-combinations-via-new-site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5101:\"<img />Viewing patterns from the WP Block Patterns homepage.\n\n\n\n<p class=\"has-drop-cap\">Andrew Starr, the owner of UXL Themes, has cobbled together a new project around block patterns. His new site, aptly named <a href=\"https://wpblockpatterns.com/\">WP Block Patterns</a>, allows users to preview any WordPress.org-hosted block themes and patterns together.</p>\n\n\n\n<p>The project does not allow visitors to download anything or ask them to sign up. It is a basic demo system, one that WordPress.org should consider at some point.</p>\n\n\n\n<p>Visitors can choose any block pattern. Then, they can select any theme to see what they look like together. It is a quick way to test patterns and themes without actually adding them to your WordPress installation.</p>\n\n\n\n<p>For example, a user can view the <a href=\"https://wpblockpatterns.com/team-social-cards/?theme=tove\">Team Social Cards</a> pattern &mdash; one that I had a hand in creating &mdash; along with Anders Nor&eacute;n&rsquo;s Tove theme.</p>\n\n\n\n<img />\n\n\n\n<p>Or, the <a href=\"https://wpblockpatterns.com/image-and-quote-on-a-background/?theme=naledi\">Image and a Quote on a Background</a> pattern with Anariel Design&rsquo;s Naledi theme.</p>\n\n\n\n<img />\n\n\n\n<p>From Gutenberg Hub&rsquo;s <a href=\"https://wptavern.com/gutenberg-hub-launches-landing-page-templates-directory\">landing page templates</a> to EditorsKit&rsquo;s <a href=\"https://wptavern.com/creator-of-editorskit-launches-community-block-sharing-site\">ShareABlock collection</a>, the block system has allowed developers to experiment with unique sites for end-users. Because everything is built upon a standard, I am guessing we will see even more of these creative projects in the future. WP Block Patterns is another step in that journey.</p>\n\n\n\n<p>This was not always the plan for the WP Block Patterns site. Starr set out to blog about patterns after their feature release in WordPress 5.5. After only publishing a single post, the project fell to the wayside. Fortunately, inspiration struck.</p>\n\n\n\n<p>&ldquo;I have a site that I use as my reference point when providing support for my themes,&rdquo; he said. &ldquo;This site has a blend of varying content and code that allows me to quickly switch/preview any of my themes, without the need to actually change the active theme in the admin, or maintain a different site for every theme.&rdquo;</p>\n\n\n\n<p>In the process of making improvements to his theme-switching functionality, the domain came up for renewal. He had planned to let it expire but decided to see if he could come up with something to do with the site.</p>\n\n\n\n<p>&ldquo;I got the inspiration to use the theme switcher in conjunction with content from block patterns,&rdquo; said Starr. &ldquo;If I hadn&rsquo;t been working on my script at the same time as I coincidently received the domain expiration message, I probably wouldn&rsquo;t have had this idea.&rdquo;</p>\n\n\n\n<p>Currently, he is manually installing the themes on the site but may have to automate it in the future as more block themes are released. However, he is pulling patterns and categories directly from the WordPress.org API, which is periodically updated.</p>\n\n\n\n<p>The site only showcases 100% block themes. Technically, it should work with any that supports editor styles. Starr said it had never crossed his mind to showcase non-block themes.</p>\n\n\n\n<p>&ldquo;I have been keeping my eye on the releases of FSE themes, checking out every block theme that I come across, and it just sort of seems that block themes are the future, and classic themes feel like a step backwards now after investing so much time working with block themes,&rdquo; he said. &ldquo;The site would work just fine with classic themes, but there are so many available I&rsquo;m not sure how to make it manageable or select which themes to feature (and which ones to leave out). I guess that&rsquo;s also something I&rsquo;ll have to think about as the number of block themes increases.&rdquo;</p>\n\n\n\n<p>Thus far, Starr has released two block themes, <a href=\"https://wordpress.org/themes/hansen/\">Hansen</a> and <a href=\"https://wordpress.org/themes/pria/\">Pria</a>, through his UXL Themes brand. Users can preview both via the site. However, he is already working on his next project.</p>\n\n\n\n<p>&ldquo;As a proof of concept, I am working on a classic theme that will have the functionality to also be a block-based theme when FSE is available in core,&rdquo; he said. &ldquo;The idea is that the user will not notice any front-end differences when the theme &lsquo;switches&rsquo; from classic to block-based, but the user will gain the new FSE admin tools, with the user&rsquo;s classic customizer modifications switched over intact to the new Site Editor. I have found that there are compromises that need to be made when getting classic and FSE to work together seamlessly in a single theme, so I am not sure whether this will be released generally.&rdquo;</p>\n\n\n\n<p>He also teased a project related to FSE that is neither a theme nor a plugin. However, he was not ready to share any details just yet.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Sep 2021 00:44:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: WordCamp US 2021 Kicks Off Online in 48 Hours\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=123520\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:155:\"https://wptavern.com/wordcamp-us-2021-kicks-off-online-in-48-hours?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-us-2021-kicks-off-online-in-48-hours\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2517:\"<p><a href=\"https://us.wordcamp.org/2021/\">WordCamp US</a>, WordPress&rsquo; largest flagship event in the Western Hemisphere, is set to   kick off on Friday, October 1, at 11:45 AM EDT. The single-day event will include sessions, workshops, networking events, virtual sponsor booths, and <a href=\"https://us.wordcamp.org/2021/musicians/\">musical interludes</a>. Get ready to be inspired by new ideas and learn about the latest and greatest capabilities in the exciting frontier of blocks.</p>\n\n\n\n<p>In preparation for the event, attendees can view the <a href=\"https://us.wordcamp.org/2021/schedule/\">schedule</a>, star sessions they want to catch, and email, link, or print them. The event features two simultaneous tracks, one focused more on development (Columbia) and another for less-technical topics (Yukon). </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Unlike many previous years, WordCamp US will not include Matt Mullenweg&rsquo;s annual State of the Word address. This year the event will be capped off with a presentation from WordPress&rsquo; executive director, Josepha Haden Chomphosy, titled &ldquo;<a href=\"https://us.wordcamp.org/2021/session/a-chat-with-josepha/\">Grow Your Story</a>,&rdquo; where she will discuss&nbsp;&ldquo;trends seeded in 2020&rdquo; and future growth opportunities for the community. Haden Chomphosy said there will be a State of the Word later in the year, possibly &ldquo;at a hybrid in-person/live broadcast format (in December),&rdquo; but the details are still being worked out.</p>\n\n\n\n<p>WordCamp US 2021 has its own custom, outdoorsy wapuu designed by Alyssa Hogan. The mascot is holding a map and sporting a WordPress cap, backpack, and camping gear to go along with the event&rsquo;s National Parks website theme designed by Mel Choyce-Dwan.</p>\n\n\n\n<img />image credit: <a href=\"https://us.wordcamp.org/2021/meet-wcus-2021-wapuu/\">WordCamp US</a>\n\n\n\n<p>The traditional <a href=\"https://us.wordcamp.org/2021/job-board/\">Job Board</a> has made a return this year but is limited to the event&rsquo;s upper level sponsors. In future years, if the virtual aspect of the event is preserved alongside the in-person activities, it would be good to see this board expanded to include all sponsors and even some community-submitted listings. </p>\n\n\n\n<p>More than 2,000 people have already signed up to attend WordCamp US online. <a href=\"https://us.wordcamp.org/2021/tickets/\">Registration is free</a> and still open if you haven&rsquo;t yet gotten your ticket.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Sep 2021 20:56:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"HeroPress: When the world was down, the WordPress community was up – Cuando el mundo necesitaba un descanso, la comunidad de WordPress estaba activa\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=4140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:182:\"https://heropress.com/essays/when-the-world-was-down-the-wordpress-community-was-up/#utm_source=rss&utm_medium=rss&utm_campaign=when-the-world-was-down-the-wordpress-community-was-up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6293:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2021/09/092821-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Thank you to everyone who contributes to WordPress.\" /><p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n<p>This is not meant to be another gloomy story about the year 2020 but a big thank you to the WordPress community.</p>\n<p>All started four days into 2020 when my biggest client called me to ask to take his website down as he was filing for bankruptcy. I should’ve known it was a bad omen of what was to come.</p>\n<p>As the year continued and the world succumbed into the unknown, many businesses closed their doors, among them, most of my clients, my own business and my mental health.</p>\n<p>Of course, when left without income, I applied to as many jobs as I followed people on Twitter who were helping others get WordPress related jobs, but I couldn’t even get an interview.</p>\n<h3>Then Came WordCamp</h3>\n<p>By the time we were busy helping plan for the first WordPress Europe Online, I was asked to become a team rep for design and later joined the 5.5 release team, I even designed the 5.5 About page and showed the world that I am not a visual designer!</p>\n<p>As time passed, I started looking forward to those weekly meetings with the design team, which brought many lessons and stressful evenings accompanied by cheers, smiles, support comments and many virtual hugs. I don’t know if everyone knew I needed them, but they brought me back to life, day by day… week by week, I so much needed those meetings.</p>\n<p>Months passed and I got involved with other teams and got to virtually meet many more contributors and everyone always had something positive to give.</p>\n<p>Last summer, at WCEU at a panel I was asked what my favorite part was from contributing to WordPress and my answer without hesitation will always be “the community”.</p>\n<h3>Personal Triumph</h3>\n<p>I am proud of everything I have done within WordPress but perhaps my most loved project, still in progress, is the recategorization of the end-user documentation. It started as a personal project, now is my gift to the community.</p>\n<p>As I am about to end my tenure as design team rep, I want to reflect into the good things I got from the community: many late nights with the release teams (the release parties are the best), many new friends &#8211; that I am so looking forward to one day meet in person and to hug those that I already know. A better idea of what I want to do in my professional life. An intense learning year about WordPress, leadership, contribution, open source and friendship.</p>\n<p>Thank you to everyone who has in one way, or another been there for me. Thank you to everyone who has been there to mentor and to support other contributors. Thank you to everyone who contributes to WordPress. And lastly, thank you to my two friends and guardian angels, Tammie <a href=\"https://twitter.com/karmatosed\">@karmatosed</a> and Monique <a href=\"https://profiles.wordpress.org/boemedia/\">@boemedia</a>.</p>\n<h1 id=\"espanol\">Cuando el mundo necesitaba un descanso, la comunidad de WordPress estaba activa</h1>\n<p>Esta no pretende ser otra historia sombría sobre el año 2020, sino un gran agradecimiento a la comunidad de WordPress.</p>\n<p>Todo comenzó cuatro días después de 2020 cuando mi mayor cliente me llamó para pedirme que cerrara su sitio web porque se iba a declarar en quiebra. Debería haber sabido que era un mal presagio de lo que estaba por venir.</p>\n<p>A medida que avanzaba el año y el mundo sucumbía a lo desconocido, muchos negocios cerraron sus puertas, entre ellos, la mayoría de mis clientes, mi propio negocio y mi salud mental.</p>\n<p>Por supuesto, cuando me quedé sin ingresos, solicité tantos trabajos como seguí a personas en Twitter que estaban ayudando a otros a conseguir trabajo relacionado con WordPress, pero ni siquiera pude conseguir una entrevista.</p>\n<h3>Tiempo de la WordCamp</h3>\n<p>Mas adelante, mientras planeábamos la primera WordPress Europe Online, me invitaron a ser representante del equipo de diseño y luego me uní al equipo de lanzamiento de 5.5, incluso diseñé la página Acerca de 5.5 y le mostré al mundo que no soy una diseñadora visual!</p>\n<p>Con el paso del tiempo, comencé a esperar con ansias esas reuniones semanales con el equipo de diseño, que trajeron muchas lecciones y veladas estresantes acompañadas de sonrisas, comentarios de apoyo y muchos abrazos virtuales. No sé si todos sabían que los necesitaba, pero me devolvieron la vida, día a día &#8230; semana a semana, necesitaba tanto esas reuniones.</p>\n<p>Pasaron los meses y me involucré con otros equipos y pude conocer virtualmente a muchos más colaboradores que siempre tenían algo positivo que ofrecer.</p>\n<p>El verano pasado, durante un panel en WCEU, me preguntaron cuál es mi parte favorita de contribuir a WordPress y mi respuesta sin dudarlo siempre ha sido “la comunidad”.</p>\n<h3>Un triunfo personal</h3>\n<p>Estoy orgullosa de mis contribuciones para WordPress, pero quizás mi proyecto más querido, que continúo trabajando en el, es la re-categorización de la documentación del usuario. Este comenzó como un proyecto personal, hoy en día, es mi regalo a la comunidad.</p>\n<p>Ahora que estoy finalizando mi termino como representante del equipo global de diseño, quiero reflexionar sobre las cosas buenas que obtuve de la comunidad: muchas noches con los equipos de lanzamiento (las fiestas de lanzamiento son las mejores), muchos amigos nuevos, que espero algún día conocer en persona y abrazar a los que ya conozco. Una mejor idea de lo que quiero hacer en mi vida profesional. Un año de intenso aprendizaje sobre WordPress, liderazgo, contribución, código abierto y amistad.</p>\n<p>Gracias a todos los que de una forma u otra me han apoyado. Gracias a todos los que han orientado y apoyado a otros colaboradores. Gracias a todos los que contribuyen a WordPress. Y por último, gracias a mis dos amigas y ángeles de la guarda, Tammie <a href=\"https://twitter.com/karmatosed\">@karmatosed</a> y Monique <a href=\"https://profiles.wordpress.org/boemedia/\">@boemedia</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Sep 2021 06:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Estela Rueda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Print Magazine on WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=54801\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2021/09/print-magazine-on-wp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"<p>One of my favorite magazines, that I have issues going back to the 40s and 50s, has <a href=\"https://www.printmag.com/branding-identity-design/how-to-get-that-new-print-look/\">relaunched and redesigned their site on WordPress and it&#8217;s gorgeous</a>. Speaking of great redesigns, the <a href=\"https://grist.org/\">new Grist</a> is pretty great too.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Sep 2021 01:26:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 20 Oct 2021 00:00:21 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 19 Oct 2021 23:45:07 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20201017055008\";}','no'),(466,'_elementor_global_css','a:6:{s:4:\"time\";i:1631202570;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'),(432,'category_children','a:0:{}','yes'),(433,'elementor_library_category_children','a:0:{}','yes'),(435,'team-category_children','a:0:{}','yes'),(436,'job-category_children','a:0:{}','yes'),(437,'job-type_children','a:0:{}','yes'),(438,'job-location_children','a:0:{}','yes'),(439,'service-category_children','a:0:{}','yes'),(440,'service-tag_children','a:0:{}','yes'),(441,'portfolio-category_children','a:0:{}','yes'),(442,'widget_recent-posts','a:3:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:4;s:9:\"show_date\";b:1;}i:2;a:3:{s:5:\"title\";s:13:\"Popular Posts\";s:6:\"number\";i:4;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(443,'woocommerce_demo_store_notice','This is a demo store for testing purposes &mdash; no orders shall be fulfilled.','yes'),(444,'woocommerce_shop_page_display','','yes'),(445,'woocommerce_category_archive_display','','yes'),(446,'woocommerce_default_catalog_orderby','menu_order','yes'),(447,'woocommerce_catalog_columns','3','yes'),(448,'woocommerce_thumbnail_cropping','1:1','yes'),(449,'woocommerce_thumbnail_cropping_custom_width','4','yes'),(450,'woocommerce_thumbnail_cropping_custom_height','3','yes'),(451,'woocommerce_checkout_company_field','optional','yes'),(452,'woocommerce_checkout_address_2_field','optional','yes'),(453,'woocommerce_checkout_phone_field','required','yes'),(454,'woocommerce_checkout_terms_and_conditions_checkbox_text','I have read and agree to the website [terms]','yes'),(455,'nav_menus_created_posts','a:0:{}','yes'),(461,'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'),(462,'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'),(464,'elementor_log','a:1:{s:32:\"1a48d9e9962fdab7a00bd435a4e1ad19\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:88:\"/home/dev34/candc117.dev34.info/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:87;s:7:\"\0*\0date\";s:19:\"2021-09-09 15:47:47\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:14;s:14:\"\0*\0times_dates\";a:14:{i:0;s:19:\"2021-09-09 15:47:47\";i:1;s:19:\"2021-09-09 15:51:21\";i:2;s:19:\"2021-09-09 15:57:20\";i:3;s:19:\"2021-09-09 16:08:08\";i:4;s:19:\"2021-09-09 16:14:24\";i:5;s:19:\"2021-09-09 16:16:10\";i:6;s:19:\"2021-09-09 16:33:32\";i:7;s:19:\"2021-09-09 16:33:34\";i:8;s:19:\"2021-09-09 21:36:24\";i:9;s:19:\"2021-09-10 05:08:58\";i:10;s:19:\"2021-09-10 05:12:08\";i:11;s:19:\"2021-09-10 20:14:48\";i:12;s:19:\"2021-09-10 21:09:44\";i:13;s:19:\"2021-09-10 21:35:21\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:88:\"/home/dev34/candc117.dev34.info/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:87;s:5:\"trace\";b:1;}}}','no'),(476,'elementor_controls_usage','a:3:{s:7:\"wp-post\";a:8:{s:7:\"heading\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:3;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:3;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}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:2;}}}}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:5:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:18:\"shadepro-main-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:7:\"general\";a:1:{s:10:\"menu_align\";i:1;}}s:5:\"style\";a:1:{s:10:\"menu_style\";a:2:{s:10:\"menu_color\";i:1;s:16:\"menu_hover_color\";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:2:{s:10:\"text_color\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:22:\"shadepro-vertical-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_menu_style\";a:3:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:10:\"menu_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}s:7:\"wp-page\";a:14:{s:6:\"column\";a:2:{s:5:\"count\";i:48;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:47;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:11;s:7:\"padding\";i:9;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:2;s:15:\"animation_delay\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:7;s:18:\"background_color_b\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:20;s:12:\"border_width\";i:20;s:12:\"border_color\";i:15;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:29;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:6:\"layout\";i:4;s:15:\"stretch_section\";i:9;s:3:\"gap\";i:1;s:16:\"content_position\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:16;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:27;s:6:\"margin\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:4;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:17;s:16:\"background_color\";i:17;s:18:\"background_color_b\";i:5;}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:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_image\";i:4;s:27:\"background_overlay_position\";i:4;s:23:\"background_overlay_size\";i:4;s:25:\"background_overlay_repeat\";i:3;s:26:\"background_overlay_opacity\";i:1;}s:25:\"section_advanced_gradient\";a:1:{s:24:\"shadepro_enable_gradient\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:15;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:15;s:21:\"typography_typography\";i:11;s:22:\"typography_font_family\";i:11;s:20:\"typography_font_size\";i:11;s:22:\"typography_font_weight\";i:7;s:5:\"align\";i:5;s:22:\"typography_line_height\";i:5;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:10;s:7:\"_margin\";i:4;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:7;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:7;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:16;s:5:\"align\";i:12;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:9;s:7:\"_margin\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:11:\"title_color\";i:7;s:22:\"typography_line_height\";i:6;s:25:\"typography_letter_spacing\";i:6;}}}}s:19:\"shadepro-breadcrumb\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_tiem_style\";a:4:{s:33:\"breadcroumb_typography_typography\";i:3;s:32:\"breadcroumb_typography_font_size\";i:3;s:17:\"breadcroumb_color\";i:3;s:22:\"breadcroumb_link_color\";i:3;}}}}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:9:\"icon-list\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:3;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:17:\"slider_revolution\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:2;}s:21:\"section_style_content\";a:7:{s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:28:\"title_typography_font_family\";i:3;s:28:\"title_typography_font_weight\";i:3;s:33:\"description_typography_typography\";i:1;s:34:\"description_typography_font_family\";i:1;s:34:\"description_typography_font_weight\";i:1;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:4:\"link\";i:4;}}s:5:\"style\";a:3:{s:19:\"section_style_image\";a:3:{s:10:\"image_size\";i:4;s:15:\"hover_animation\";i:4;s:19:\"image_border_radius\";i:4;}s:21:\"section_style_content\";a:6:{s:17:\"description_color\";i:4;s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;}s:13:\"section_extra\";a:1:{s:34:\"image_hover_shadow_box_shadow_type\";i:1;}}}}s:12:\"shadepro-btn\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:6:\"button\";a:3:{s:12:\"button_label\";i:4;s:4:\"icon\";i:4;s:10:\"button_url\";i:4;}}s:5:\"style\";a:2:{s:10:\"icon_style\";a:2:{s:8:\"icon_gap\";i:4;s:10:\"icon_color\";i:4;}s:12:\"button_style\";a:11:{s:20:\"button_border_border\";i:4;s:19:\"button_border_width\";i:4;s:29:\"heading_typography_typography\";i:4;s:30:\"heading_typography_font_family\";i:4;s:28:\"heading_typography_font_size\";i:4;s:30:\"heading_typography_font_weight\";i:4;s:30:\"heading_typography_line_height\";i:4;s:33:\"heading_typography_letter_spacing\";i:4;s:19:\"button_border_color\";i:4;s:16:\"inline_btn_color\";i:4;s:15:\"btn_hover_color\";i:4;}}}}s:20:\"shadepro-testimonial\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:17:\"testimonial_style\";i:2;s:5:\"image\";i:2;s:4:\"name\";i:2;s:5:\"title\";i:2;s:11:\"description\";i:2;}}s:5:\"style\";a:1:{s:9:\"box_style\";a:1:{s:14:\"box_background\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;s:14:\"_border_radius\";i:2;}}}}}s:7:\"section\";a:7:{s:7:\"heading\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:5:\"align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:6;s:7:\"_margin\";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:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:6;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:5:\"align\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:14;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:14;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:12;s:12:\"border_width\";i:12;s:12:\"border_color\";i:10;}s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:6;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:8;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}}}','no'),(648,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(649,'rs-addons-counter','32','yes'),(650,'revslider-addons','O:8:\"stdClass\":32:{s:25:\"revslider-particles-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"424\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"3.2.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2021-08-06\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"405\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:30:\"revslider-transitionpack-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"369\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:30:\"revslider-transitionpack-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Advanced Transitions\";s:6:\"line_1\";s:43:\"Add never-before-seen slide transitions to \";s:6:\"line_2\";s:42:\"Slider Revolution with the power of WEBGL.\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"30\";s:11:\"last_update\";s:10:\"2021-10-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_transition.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"AT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"404\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2021-07-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"418\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"410\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2021-06-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"409\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2021-06-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"420\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2021-06-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"411\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2021-08-09\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"383\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"417\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2021-06-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"422\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"6.5.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:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-08-06\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"421\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"6.5.0\";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:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2021-07-17\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"416\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2021-06-17\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"423\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:5:\"6.5.6\";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:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2021-09-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"396\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.5.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:\"3.0.0\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-05-28\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"407\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2021-10-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"397\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"6.5.0\";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:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"419\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.2\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2021-07-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"414\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2021-06-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"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:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2020-02-19\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"415\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2021-06-17\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";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:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"399\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2021-06-17\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";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.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";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:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";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:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.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\":15:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";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:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"388\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:5:\"6.5.0\";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:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.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\":15:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";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.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.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\":15:{s:2:\"id\";s:3:\"402\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.5.0\";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:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2021-05-28\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"406\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"6.5.1\";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:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2021-06-22\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),(573,'_transient_product_query-transient-version','1634688018','yes'),(574,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(645,'revslider-latest-version','6.5.9','yes'),(646,'revslider-stable-version','4.2.0','yes'),(647,'revslider-notices','a:1:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:429:\"<div style=\"display: block; background: linear-gradient(90deg, \nrgba(28,9,80,1) 0%, rgba(28,9,80,1) 45%, rgba(247,52,94,1) 55%, \nrgba(247,52,94,1) 100%);text-align: center; height: 250px;\"><a \nhref=\"https://forms.gle/5G2TJd9Rok1FStCD8\" target=\"_blank\" \nrel=\"noopener\"><img style=\"width: 960px; height: 250px; \ndisplay: inline-block;\" class=\"lazyload\" src=\"//updates.themepunch-ext-a.tools/banners/usability_survey.jpg\"></a></div>\";s:4:\"code\";s:11:\"TPRSV659-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'),(651,'revslider-library-check','1634017628','yes'),(652,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(653,'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'),(654,'revslider-templates-check','1634358316','yes'),(655,'revslider-templates-hash','d561a46f9f5759f2e1bc3ae667579634','yes'),(656,'rs-templates-new','','no'),(658,'rs-templates-counter','8','no'),(659,'revslider_table_version','1.0.12','yes'),(660,'revslider_update_version','6.4.10','yes'),(661,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663,'revslider_update_revision_current','6.4.10','yes');
INSERT INTO `wp9l_options` VALUES (657,'rs-templates','a:3:{s:4:\"hash\";s:32:\"a4a51f4095edb9d52813c539e8ba1dfa\";s:6:\"slider\";a:554:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:22:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:22:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:22:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:22:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:22:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:22:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:22:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.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;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:25:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:25:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:25:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:25:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:25:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:25:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:25:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:25:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:25:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:25:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:25:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:25:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:25:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:25:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:25:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:25:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:25:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:25:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:25:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:25:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:25:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:22:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:22:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:22:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:22:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:22:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:25:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:25:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:25:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:25:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:25:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:25:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:25:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:25:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:25:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:25:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:25:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:25:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:25:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:25:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:25:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:25:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:25:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:25:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:25:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:25:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:25:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:25:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:25:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:25:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:22:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:22:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:25:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:25:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:25:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:25:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:25:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:25:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:25:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:25:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:25:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:25:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:25:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:25:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:25:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:25:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:22:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:22:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:22:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.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;}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:25:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.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;}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.1\";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.1\";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.1\";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.1\";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.1\";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.1\";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.1\";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;}i:528;a:22:{s:2:\"id\";s:3:\"564\";s:5:\"title\";s:22:\"Background Effect Hero\";s:5:\"alias\";s:14:\"bg-effect-hero\";s:3:\"zip\";s:18:\"bg-effect-hero.zip\";s:3:\"uid\";s:32:\"55bb0fa5ac66ad84423fa704b701e1df\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";s:7:\"preview\";s:77:\"https://www.sliderrevolution.com/templates/background-effect-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:224:\"<span class=\"ttm_content\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br />\r\nthis slider / hero module is exactly what you were looking for.</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:4:\"hero\";}s:14:\"plugin_require\";s:697:\"[{\"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\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:45:50\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:529;a:22:{s:2:\"id\";s:3:\"565\";s:5:\"title\";s:26:\"Cyber Glitch Effect Slider\";s:5:\"alias\";s:9:\"cyberfunk\";s:3:\"zip\";s:13:\"cyberfunk.zip\";s:3:\"uid\";s:32:\"44fdc7e13074bdc46500972cd708c739\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/cyber-glitch-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br />\r\nglitch effect transitions and a typewriter effect.<br />\r\nThe custom navigation skin can be customized easily!</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:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:355:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:51:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:530;a:22:{s:2:\"id\";s:3:\"566\";s:5:\"title\";s:30:\"Motion Blur Portfolio Showcase\";s:5:\"alias\";s:21:\"motion-blur-portfolio\";s:3:\"zip\";s:25:\"motion-blur-portfolio.zip\";s:3:\"uid\";s:32:\"28086bed49cfb241c7d40f91cd64e970\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/motion-blur-portfolio-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br />\r\nPacked with a logo and menu itâs ready to visualize your wildest ideas.</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:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:56: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:531;a:22:{s:2:\"id\";s:3:\"567\";s:5:\"title\";s:25:\"Portal Effect Hero Slider\";s:5:\"alias\";s:18:\"portal-effect-hero\";s:3:\"zip\";s:22:\"portal-effect-hero.zip\";s:3:\"uid\";s:32:\"87f5b64e44dc5b75bc1c7adbeb287ee9\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/portal-effect-hero-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:282:\"<span class=\"ttm_content\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br />\r\nThe design already includes elements like a logo, menu and social media icons.</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:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:08:18\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:532;a:22:{s:2:\"id\";s:3:\"568\";s:5:\"title\";s:22:\"Winery Timeline Slider\";s:5:\"alias\";s:15:\"winery-timeline\";s:3:\"zip\";s:19:\"winery-timeline.zip\";s:3:\"uid\";s:32:\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/winery-timeline-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:247:\"<span class=\"ttm_content\">Tell your own story with this fabulous timeline slider.<br />\r\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!</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:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:13:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:533;a:25:{s:2:\"id\";s:3:\"569\";s:5:\"title\";s:25:\"Smart Living One Pager V1\";s:5:\"alias\";s:25:\"smart-living-one-pager-v1\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:33:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:534;a:25:{s:2:\"id\";s:3:\"570\";s:5:\"title\";s:25:\"Smart Living One Pager V2\";s:5:\"alias\";s:25:\"smart-living-one-pager-v2\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v2\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:38:21\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:535;a:25:{s:2:\"id\";s:3:\"571\";s:5:\"title\";s:25:\"Smart Living One Pager V3\";s:5:\"alias\";s:25:\"smart-living-one-pager-v3\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v3\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:39:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:536;a:25:{s:2:\"id\";s:3:\"572\";s:5:\"title\";s:6:\"Menu 1\";s:5:\"alias\";s:6:\"menu-1\";s:3:\"zip\";s:16:\"packs/menu-1.zip\";s:3:\"uid\";s:32:\"6e5038d711f2ee8326c79c3a9e06ded4\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:41:12\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:537;a:26:{s:2:\"id\";s:3:\"573\";s:5:\"title\";s:6:\"Hero 1\";s:5:\"alias\";s:14:\"onepage-hero-1\";s:3:\"zip\";s:24:\"packs/onepage-hero-1.zip\";s:3:\"uid\";s:32:\"9f5fec6956bd2e1e1ecc553a8b7471b0\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:48:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:538;a:25:{s:2:\"id\";s:3:\"574\";s:5:\"title\";s:7:\"About 1\";s:5:\"alias\";s:6:\"about1\";s:3:\"zip\";s:16:\"packs/about1.zip\";s:3:\"uid\";s:32:\"fc4962093f61124101c05ceb506fa5d2\";s:3:\"img\";s:17:\"about1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:50:54\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:539;a:25:{s:2:\"id\";s:3:\"575\";s:5:\"title\";s:10:\"Services 1\";s:5:\"alias\";s:9:\"services1\";s:3:\"zip\";s:19:\"packs/services1.zip\";s:3:\"uid\";s:32:\"08f72a81aeb9afdaa57f544e4331a6da\";s:3:\"img\";s:20:\"services1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:52:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:540;a:25:{s:2:\"id\";s:3:\"576\";s:5:\"title\";s:10:\"Projects 1\";s:5:\"alias\";s:9:\"projects1\";s:3:\"zip\";s:19:\"packs/projects1.zip\";s:3:\"uid\";s:32:\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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-09-07 15:01:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:541;a:25:{s:2:\"id\";s:3:\"577\";s:5:\"title\";s:8:\"Footer 1\";s:5:\"alias\";s:8:\"footer-1\";s:3:\"zip\";s:18:\"packs/footer-1.zip\";s:3:\"uid\";s:32:\"947fac99689a985c7f0f7dfec4311f6b\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:05:00\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:542;a:25:{s:2:\"id\";s:3:\"578\";s:5:\"title\";s:24:\"Explainer Block 1 Part 1\";s:5:\"alias\";s:23:\"explainer-block-1-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part1.zip\";s:3:\"uid\";s:32:\"731980bef0ea06263d05b286b5a75dfe\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:06:07\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:543;a:25:{s:2:\"id\";s:3:\"579\";s:5:\"title\";s:24:\"Explainer Block 1 Part 2\";s:5:\"alias\";s:23:\"explainer-block-1-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part2.zip\";s:3:\"uid\";s:32:\"ded730f13551f78b9a87b159b72d8ce8\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:07:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";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:\"48\";s:9:\"installed\";b:0;}i:544;a:25:{s:2:\"id\";s:3:\"580\";s:5:\"title\";s:16:\"Projects Modal 1\";s:5:\"alias\";s:16:\"projects-modal-1\";s:3:\"zip\";s:26:\"packs/projects-modal-1.zip\";s:3:\"uid\";s:32:\"b17af2f4e21786711a2ce4ac0c4436ad\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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-09-07 15:08:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"8\";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:\"48\";s:9:\"installed\";b:0;}i:545;a:25:{s:2:\"id\";s:3:\"581\";s:5:\"title\";s:6:\"Menu 2\";s:5:\"alias\";s:6:\"menu-2\";s:3:\"zip\";s:16:\"packs/menu-2.zip\";s:3:\"uid\";s:32:\"a8d103f753ee50d4f81aa4100df8b7f9\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:20:20\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:546;a:25:{s:2:\"id\";s:3:\"582\";s:5:\"title\";s:6:\"Hero 2\";s:5:\"alias\";s:6:\"hero-2\";s:3:\"zip\";s:16:\"packs/hero-2.zip\";s:3:\"uid\";s:32:\"7e56900f8c4b6e12435b70e141accaa8\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 15:27:59\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:547;a:25:{s:2:\"id\";s:3:\"583\";s:5:\"title\";s:10:\"Services 2\";s:5:\"alias\";s:10:\"services-2\";s:3:\"zip\";s:20:\"packs/services-2.zip\";s:3:\"uid\";s:32:\"da2d588b291a7754096ac77746ba1da5\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:29:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:548;a:25:{s:2:\"id\";s:3:\"584\";s:5:\"title\";s:7:\"About 2\";s:5:\"alias\";s:7:\"about-2\";s:3:\"zip\";s:17:\"packs/about-2.zip\";s:3:\"uid\";s:32:\"8e9e84d1aec08de6e099473683bf0e57\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:30:15\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:549;a:25:{s:2:\"id\";s:3:\"585\";s:5:\"title\";s:10:\"Projects 2\";s:5:\"alias\";s:10:\"projects-2\";s:3:\"zip\";s:20:\"packs/projects-2.zip\";s:3:\"uid\";s:32:\"99bc6ca75f6d5e018701aef5f5b22b27\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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-09-07 15:32:06\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:550;a:25:{s:2:\"id\";s:3:\"586\";s:5:\"title\";s:8:\"Footer 2\";s:5:\"alias\";s:7:\"footer2\";s:3:\"zip\";s:17:\"packs/footer2.zip\";s:3:\"uid\";s:32:\"99df496d2fd9e897a2debb66958cb610\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:34:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:551;a:25:{s:2:\"id\";s:3:\"587\";s:5:\"title\";s:24:\"Explainer Block 2 Part 1\";s:5:\"alias\";s:23:\"explainer-block-2-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part1.zip\";s:3:\"uid\";s:32:\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:35:48\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:552;a:25:{s:2:\"id\";s:3:\"588\";s:5:\"title\";s:24:\"Explainer Block 2 Part 2\";s:5:\"alias\";s:23:\"explainer-block-2-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part2.zip\";s:3:\"uid\";s:32:\"b12ac82484c5d2609994978f95026057\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:37:05\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";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:\"49\";s:9:\"installed\";b:0;}i:553;a:25:{s:2:\"id\";s:3:\"589\";s:5:\"title\";s:16:\"Projects Modal 2\";s:5:\"alias\";s:16:\"projects-modal-2\";s:3:\"zip\";s:26:\"packs/projects-modal-2.zip\";s:3:\"uid\";s:32:\"ac164d7043a8958ae2931e4be54bf56e\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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-09-07 15:38:22\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"8\";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:\"49\";s:9:\"installed\";b:0;}i:554;a:25:{s:2:\"id\";s:3:\"590\";s:5:\"title\";s:6:\"Menu 3\";s:5:\"alias\";s:6:\"menu-3\";s:3:\"zip\";s:16:\"packs/menu-3.zip\";s:3:\"uid\";s:32:\"7300529d564642c76e61890cf0ef57cf\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:42:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:555;a:25:{s:2:\"id\";s:3:\"591\";s:5:\"title\";s:6:\"Hero 3\";s:5:\"alias\";s:6:\"hero-3\";s:3:\"zip\";s:16:\"packs/hero-3.zip\";s:3:\"uid\";s:32:\"08db05794abf4e6c10788cbd423f92b2\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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-09-07 15:46:06\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:556;a:25:{s:2:\"id\";s:3:\"592\";s:5:\"title\";s:7:\"About 3\";s:5:\"alias\";s:7:\"about-3\";s:3:\"zip\";s:17:\"packs/about-3.zip\";s:3:\"uid\";s:32:\"dac01fc9b9d664f271e1ea6a1bbb850c\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:47:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:557;a:25:{s:2:\"id\";s:3:\"593\";s:5:\"title\";s:10:\"Services 3\";s:5:\"alias\";s:10:\"services-3\";s:3:\"zip\";s:20:\"packs/services-3.zip\";s:3:\"uid\";s:32:\"4bad1c4a765cef7d93d3c7e2a0e76b83\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:50:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:558;a:25:{s:2:\"id\";s:3:\"594\";s:5:\"title\";s:10:\"Projects 3\";s:5:\"alias\";s:10:\"projects-3\";s:3:\"zip\";s:20:\"packs/projects-3.zip\";s:3:\"uid\";s:32:\"e3337a84122e580679474dea8d7bf37c\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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-09-07 15:51:31\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:559;a:25:{s:2:\"id\";s:3:\"595\";s:5:\"title\";s:8:\"Footer 3\";s:5:\"alias\";s:8:\"footer-3\";s:3:\"zip\";s:18:\"packs/footer-3.zip\";s:3:\"uid\";s:32:\"524f4445a5565bf3ef1dcd7b2f0228cc\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:53:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:560;a:25:{s:2:\"id\";s:3:\"596\";s:5:\"title\";s:24:\"Explainer Block 3 Part 1\";s:5:\"alias\";s:23:\"explainer-block-3-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part1.zip\";s:3:\"uid\";s:32:\"b1469a955fecb4e1d645a604804716de\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:54:20\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:561;a:25:{s:2:\"id\";s:3:\"597\";s:5:\"title\";s:24:\"Explainer Block 3 Part 2\";s:5:\"alias\";s:23:\"explainer-block-3-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part2.zip\";s:3:\"uid\";s:32:\"3faa6f1dc248ef2ba3d50cc60db557b1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:55:33\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";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:\"50\";s:9:\"installed\";b:0;}i:562;a:25:{s:2:\"id\";s:3:\"598\";s:5:\"title\";s:16:\"Projects Modal 3\";s:5:\"alias\";s:16:\"projects-modal-3\";s:3:\"zip\";s:26:\"packs/projects-modal-3.zip\";s:3:\"uid\";s:32:\"b22bb57c30e75bf7d7ba7d240a21b3fe\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</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-09-07 15:57:05\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"8\";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:\"50\";s:9:\"installed\";b:0;}i:563;a:22:{s:2:\"id\";s:3:\"599\";s:5:\"title\";s:25:\"Urban Street Skate Slider\";s:5:\"alias\";s:25:\"urban-street-skate-slider\";s:3:\"zip\";s:29:\"urban-street-skate-slider.zip\";s:3:\"uid\";s:32:\"14b18e98ac51aa922a264b74518d6f25\";s:3:\"img\";s:36:\"urban-street-skate-slider/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.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!</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:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-14 18:54:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:564;a:23:{s:2:\"id\";s:3:\"600\";s:5:\"title\";s:34:\"Fast Food Burger Restaurant Slider\";s:5:\"alias\";s:13:\"yummy-burgers\";s:3:\"zip\";s:17:\"yummy-burgers.zip\";s:3:\"uid\";s:32:\"3de3520af809748281f3aaa16d8c2222\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";s:7:\"preview\";s:78:\"https://www.sliderrevolution.com/templates/fast-food-burger-restaurant-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related 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:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}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:\"2021-10-11 12:47: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:10:\"new_slider\";b:1;}i:565;a:26:{s:2:\"id\";s:3:\"601\";s:5:\"title\";s:37:\"Tattoo Event Website Template Package\";s:5:\"alias\";s:37:\"tattoo-event-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"tattoo-event-website-template-package\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</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:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-12 14:37:06\";s:7:\"package\";s:29:\"Tattoo Event 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:\"51\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:566;a:26:{s:2:\"id\";s:3:\"602\";s:5:\"title\";s:24:\"Tattoo Event Hero Slider\";s:5:\"alias\";s:24:\"tattoo-event-hero-slider\";s:3:\"zip\";s:34:\"packs/tattoo-event-hero-slider.zip\";s:3:\"uid\";s:32:\"3a4eb0f2f1de6b9a644d626c4472208b\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</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:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:11:21\";s:7:\"package\";s:29:\"Tattoo Event 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:2:\"51\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:567;a:26:{s:2:\"id\";s:3:\"603\";s:5:\"title\";s:18:\"Tattoo Event About\";s:5:\"alias\";s:18:\"tattoo-event-about\";s:3:\"zip\";s:28:\"packs/tattoo-event-about.zip\";s:3:\"uid\";s:32:\"ae8aaf2b1aeb84036c35ac3d4a178ed6\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</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:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:14:35\";s:7:\"package\";s:29:\"Tattoo Event 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:\"51\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:568;a:26:{s:2:\"id\";s:3:\"604\";s:5:\"title\";s:20:\"Tattoo Event Artists\";s:5:\"alias\";s:20:\"tattoo-event-artists\";s:3:\"zip\";s:30:\"packs/tattoo-event-artists.zip\";s:3:\"uid\";s:32:\"e11b6508214396963c856afc1b604e58\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</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:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:16:36\";s:7:\"package\";s:29:\"Tattoo Event 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:\"51\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:569;a:26:{s:2:\"id\";s:3:\"605\";s:5:\"title\";s:21:\"Tattoo Event Schedule\";s:5:\"alias\";s:21:\"tattoo-event-schedule\";s:3:\"zip\";s:31:\"packs/tattoo-event-schedule.zip\";s:3:\"uid\";s:32:\"73be4b953a719fc9abfadc447e88b906\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</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:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:19:17\";s:7:\"package\";s:29:\"Tattoo Event 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:\"51\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:570;a:26:{s:2:\"id\";s:3:\"606\";s:5:\"title\";s:17:\"Tattoo Event News\";s:5:\"alias\";s:17:\"tattoo-event-news\";s:3:\"zip\";s:27:\"packs/tattoo-event-news.zip\";s:3:\"uid\";s:32:\"80eafaaaa2f1844cac7c5c1efb0912d1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:21:56\";s:7:\"package\";s:29:\"Tattoo Event 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:\"51\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:571;a:26:{s:2:\"id\";s:3:\"607\";s:5:\"title\";s:19:\"Tattoo Event Footer\";s:5:\"alias\";s:19:\"tattoo-event-footer\";s:3:\"zip\";s:29:\"packs/tattoo-event-footer.zip\";s:3:\"uid\";s:32:\"0c16f7290794f2e26566c8a8ca8f6493\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</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:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:23:18\";s:7:\"package\";s:29:\"Tattoo Event 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:\"51\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}}s:6:\"slides\";a:549:{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\";}}s:14:\"bg-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"bg-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"bg-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"bg-effect-hero/slide4.jpg\";}}s:9:\"cyberfunk\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"cyberfunk/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"cyberfunk/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"cyberfunk/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"cyberfunk/slide5.jpg\";}}s:21:\"motion-blur-portfolio\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide8.jpg\";}}s:18:\"portal-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"portal-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"portal-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"portal-effect-hero/slide4.jpg\";}}s:15:\"winery-timeline\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"winery-timeline/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"winery-timeline/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"winery-timeline/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"winery-timeline/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"winery-timeline/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"winery-timeline/slide7.jpg\";}}s:25:\"smart-living-one-pager-v1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";}}s:25:\"smart-living-one-pager-v2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";}}s:25:\"smart-living-one-pager-v3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";}}s:6:\"menu-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";}}s:14:\"onepage-hero-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";}}s:6:\"about1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"about1/slide1.jpg\";}}s:9:\"services1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"services1/slide1.jpg\";}}s:9:\"projects1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"projects1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"projects1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"projects1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"projects1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:20:\"projects1/slide6.jpg\";}}s:8:\"footer-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";}}s:23:\"explainer-block-1-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";}}s:23:\"explainer-block-1-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";}}s:16:\"projects-modal-1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-1/slide6.jpg\";}}s:6:\"menu-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";}}s:6:\"hero-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";}}s:10:\"services-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";}}s:7:\"about-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";}}s:10:\"projects-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"projects-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"projects-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:21:\"projects-2/slide6.jpg\";}}s:7:\"footer2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";}}s:23:\"explainer-block-2-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";}}s:23:\"explainer-block-2-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";}}s:16:\"projects-modal-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-2/slide6.jpg\";}}s:6:\"menu-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";}}s:6:\"hero-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:17:\"hero-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:17:\"hero-3/slide3.jpg\";}}s:7:\"about-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";}}s:10:\"services-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";}}s:10:\"projects-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-3/slide3.jpg\";}}s:8:\"footer-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";}}s:23:\"explainer-block-3-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";}}s:23:\"explainer-block-3-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";}}s:16:\"projects-modal-3\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-3/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-3/slide6.jpg\";}}s:25:\"urban-street-skate-slider\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide12.jpg\";}}s:13:\"yummy-burgers\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"yummy-burgers/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"yummy-burgers/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"yummy-burgers/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"yummy-burgers/slide5.jpg\";}}s:37:\"tattoo-event-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";}}s:24:\"tattoo-event-hero-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide3.jpg\";}}s:18:\"tattoo-event-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";}}s:20:\"tattoo-event-artists\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"tattoo-event-artists/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"tattoo-event-artists/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"tattoo-event-artists/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"tattoo-event-artists/slide5.jpg\";}}s:21:\"tattoo-event-schedule\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide3.jpg\";}}s:17:\"tattoo-event-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";}}s:19:\"tattoo-event-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";}}}}','no');
/*!40000 ALTER TABLE `wp9l_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_postmeta`
--

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

--
-- Dumping data for table `wp9l_postmeta`
--

LOCK TABLES `wp9l_postmeta` WRITE;
/*!40000 ALTER TABLE `wp9l_postmeta` DISABLE KEYS */;
INSERT INTO `wp9l_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(5,6,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(6,6,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:45:\"[_site_title] <wordpress@candc117.dev34.info>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(7,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:45:\"[_site_title] <wordpress@candc117.dev34.info>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(8,6,'_messages','a:12:{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: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.\";}'),(20,14,'_wp_attached_file','2021/09/log_file_2021-09-09__15-47-16.txt'),(10,6,'_locale','en_US'),(11,7,'_elementor_edit_mode','builder'),(12,7,'_elementor_template_type','kit'),(13,8,'_wp_attached_file','woocommerce-placeholder.png'),(14,8,'_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:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15,9,'inline_featured_image','0'),(16,10,'inline_featured_image','0'),(17,11,'inline_featured_image','0'),(18,12,'inline_featured_image','0'),(19,13,'inline_featured_image','0'),(21,2808,'inline_featured_image','0'),(22,2808,'_wp_page_template','default'),(23,2808,'hide_global_header','1'),(24,2808,'_hide_global_header','field_5f3288799a622'),(25,2808,'use_custom_logo','0'),(26,2808,'_use_custom_logo','field_5c718923b2115'),(27,2808,'buttons_background_color',''),(28,2808,'_buttons_background_color','field_5c721ec248a3d'),(29,2808,'buttons_text_color',''),(30,2808,'_buttons_text_color','field_5c721ed648a3e'),(31,2808,'buttons_border_color',''),(32,2808,'_buttons_border_color','field_5c723ccb7677b'),(33,2808,'buttons_hover_background_color',''),(34,2808,'_buttons_hover_background_color','field_5c72341d85272'),(35,2808,'buttons_hover_text_color',''),(36,2808,'_buttons_hover_text_color','field_5c7235491991b'),(37,2808,'buttons_hover_border_color',''),(38,2808,'_buttons_hover_border_color','field_5c7235571991c'),(39,2808,'btn2_buttons_background_color',''),(40,2808,'_btn2_buttons_background_color','field_5c721f1648a42'),(41,2808,'btn2_buttons_text_color',''),(42,2808,'_btn2_buttons_text_color','field_5c721f1f48a43'),(43,2808,'btn2_buttons_hover_background_color',''),(44,2808,'_btn2_buttons_hover_background_color','field_5c72341d8527244'),(45,2808,'btn2_buttons_hover_text_color',''),(46,2808,'_btn2_buttons_hover_text_color','field_5c7235491991b34'),(47,2808,'btn2_buttons_hover_border_color',''),(48,2808,'_btn2_buttons_hover_border_color','field_5c7235571991ccf'),(49,2808,'btn2_button_custom_css',''),(50,2808,'_btn2_button_custom_css','field_5c72342c85273'),(51,2808,'button_2_custom_css',''),(52,2808,'_button_2_custom_css','field_5f5e29a676d5e'),(53,2808,'hide_global_footer','1'),(54,2808,'_hide_global_footer','field_5b5ab66bdd531'),(55,2808,'_elementor_edit_mode','builder'),(56,2808,'_elementor_template_type','wp-page'),(57,2808,'_elementor_version','3.4.3'),(58,2808,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us to recieve a free estimate on your vehicle!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(578,2866,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(579,2866,'_elementor_css','a:6:{s:4:\"time\";i:1631228233;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:3:\"svg\";i:7;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(450,2841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1593;s:4:\"file\";s:75:\"2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:69:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-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:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:69:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:956;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:70:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:9:\"Alexlukin\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:90:\"Red buggy rushes through the field in the dust. The concept of speed of power and freedom.\";s:17:\"created_timestamp\";s:10:\"1507377661\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"106\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:46:\"Red buggy rushes through the field in the dust\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:47:{i:0;s:9:\"landscape\";i:1;s:14:\"transportation\";i:2;s:7:\"freedom\";i:3;s:8:\"quadbike\";i:4;s:9:\"motorbike\";i:5;s:4:\"race\";i:6;s:5:\"buggy\";i:7;s:5:\"rally\";i:8;s:5:\"motor\";i:9;s:5:\"sport\";i:10;s:9:\"adventure\";i:11;s:7:\"extreme\";i:12;s:4:\"road\";i:13;s:5:\"speed\";i:14;s:4:\"quad\";i:15;s:8:\"off-road\";i:16;s:7:\"vehicle\";i:17;s:3:\"car\";i:18;s:7:\"outdoor\";i:19;s:5:\"drive\";i:20;s:4:\"dust\";i:21;s:6:\"action\";i:22;s:4:\"dirt\";i:23;s:3:\"4x4\";i:24;s:6:\"desert\";i:25;s:6:\"driver\";i:26;s:10:\"motorsport\";i:27;s:5:\"dirty\";i:28;s:4:\"ride\";i:29;s:7:\"tourism\";i:30;s:6:\"nature\";i:31;s:5:\"rider\";i:32;s:10:\"automobile\";i:33;s:7:\"offroad\";i:34;s:4:\"four\";i:35;s:5:\"power\";i:36;s:6:\"travel\";i:37;s:10:\"background\";i:38;s:6:\"danger\";i:39;s:10:\"motorcycle\";i:40;s:7:\"leisure\";i:41;s:9:\"motocross\";i:42;s:9:\"lifestyle\";i:43;s:6:\"buggie\";i:44;s:5:\"field\";i:45;s:8:\"vacation\";i:46;s:9:\"buggy car\";}}s:14:\"original_image\";s:60:\"red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1.jpg\";}'),(59,2808,'_oembed_87b947de7716efd8672902a3875e0696','<iframe title=\"Video Placeholder\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(60,2808,'_oembed_time_87b947de7716efd8672902a3875e0696','1600095692'),(61,2808,'_wp_page_template','default'),(62,2808,'hide_global_header','1'),(63,2808,'_hide_global_header','field_5f3288799a622'),(64,2808,'use_custom_logo','0'),(65,2808,'_use_custom_logo','field_5c718923b2115'),(66,2808,'buttons_background_color',''),(67,2808,'_buttons_background_color','field_5c721ec248a3d'),(68,2808,'buttons_text_color',''),(69,2808,'_buttons_text_color','field_5c721ed648a3e'),(70,2808,'buttons_border_color',''),(71,2808,'_buttons_border_color','field_5c723ccb7677b'),(72,2808,'buttons_hover_background_color',''),(73,2808,'_buttons_hover_background_color','field_5c72341d85272'),(74,2808,'buttons_hover_text_color',''),(75,2808,'_buttons_hover_text_color','field_5c7235491991b'),(76,2808,'buttons_hover_border_color',''),(77,2808,'_buttons_hover_border_color','field_5c7235571991c'),(78,2808,'btn2_buttons_background_color',''),(79,2808,'_btn2_buttons_background_color','field_5c721f1648a42'),(80,2808,'btn2_buttons_text_color',''),(81,2808,'_btn2_buttons_text_color','field_5c721f1f48a43'),(82,2808,'btn2_buttons_hover_background_color',''),(83,2808,'_btn2_buttons_hover_background_color','field_5c72341d8527244'),(84,2808,'btn2_buttons_hover_text_color',''),(85,2808,'_btn2_buttons_hover_text_color','field_5c7235491991b34'),(86,2808,'btn2_buttons_hover_border_color',''),(87,2808,'_btn2_buttons_hover_border_color','field_5c7235571991ccf'),(88,2808,'btn2_button_custom_css',''),(89,2808,'_btn2_button_custom_css','field_5c72342c85273'),(90,2808,'button_2_custom_css',''),(91,2808,'_button_2_custom_css','field_5f5e29a676d5e'),(92,2808,'hide_global_footer','1'),(93,2808,'_hide_global_footer','field_5b5ab66bdd531'),(94,2808,'_elementor_edit_mode','builder'),(95,2808,'_elementor_template_type','wp-page'),(96,2808,'_elementor_version','3.4.3'),(97,2808,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us to recieve a free estimate on your vehicle!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(98,2808,'_oembed_87b947de7716efd8672902a3875e0696','<iframe title=\"Video Placeholder\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(99,2808,'_oembed_time_87b947de7716efd8672902a3875e0696','1600095692'),(100,2808,'_wp_page_template','default'),(101,2808,'hide_global_header','1'),(102,2808,'_hide_global_header','field_5f3288799a622'),(103,2808,'use_custom_logo','0'),(104,2808,'_use_custom_logo','field_5c718923b2115'),(105,2808,'buttons_background_color',''),(106,2808,'_buttons_background_color','field_5c721ec248a3d'),(107,2808,'buttons_text_color',''),(108,2808,'_buttons_text_color','field_5c721ed648a3e'),(109,2808,'buttons_border_color',''),(110,2808,'_buttons_border_color','field_5c723ccb7677b'),(111,2808,'buttons_hover_background_color',''),(112,2808,'_buttons_hover_background_color','field_5c72341d85272'),(113,2808,'buttons_hover_text_color',''),(114,2808,'_buttons_hover_text_color','field_5c7235491991b'),(115,2808,'buttons_hover_border_color',''),(116,2808,'_buttons_hover_border_color','field_5c7235571991c'),(117,2808,'btn2_buttons_background_color',''),(118,2808,'_btn2_buttons_background_color','field_5c721f1648a42'),(119,2808,'btn2_buttons_text_color',''),(120,2808,'_btn2_buttons_text_color','field_5c721f1f48a43'),(121,2808,'btn2_buttons_hover_background_color',''),(122,2808,'_btn2_buttons_hover_background_color','field_5c72341d8527244'),(123,2808,'btn2_buttons_hover_text_color',''),(124,2808,'_btn2_buttons_hover_text_color','field_5c7235491991b34'),(125,2808,'btn2_buttons_hover_border_color',''),(126,2808,'_btn2_buttons_hover_border_color','field_5c7235571991ccf'),(127,2808,'btn2_button_custom_css',''),(128,2808,'_btn2_button_custom_css','field_5c72342c85273'),(129,2808,'button_2_custom_css',''),(130,2808,'_button_2_custom_css','field_5f5e29a676d5e'),(131,2808,'hide_global_footer','1'),(132,2808,'_hide_global_footer','field_5b5ab66bdd531'),(133,2808,'_elementor_edit_mode','builder'),(134,2808,'_elementor_template_type','wp-page'),(135,2808,'_elementor_version','3.4.3'),(136,2808,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us to recieve a free estimate on your vehicle!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(496,2854,'_wp_page_template','page-templates/template-page-builder.php'),(497,2854,'_elementor_edit_mode','builder'),(498,2854,'_elementor_template_type','wp-page'),(499,2854,'_elementor_version','3.4.3'),(500,2854,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.28-AM.png\",\"id\":2847,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(494,2853,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.43.49-AM.png'),(495,2853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:142;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.43.49-AM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.43.49-AM-300x112.png\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.43.49-AM-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.43.49-AM-255x142.png\";s:5:\"width\";i:255;s:6:\"height\";i:142;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-09-09-at-9.43.49-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.43.49-AM-255x142.png\";s:5:\"width\";i:255;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.43.49-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(137,2808,'_oembed_87b947de7716efd8672902a3875e0696','<iframe title=\"Video Placeholder\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(138,2808,'_oembed_time_87b947de7716efd8672902a3875e0696','1600095692'),(139,2808,'_wp_page_template','default'),(140,2808,'hide_global_header','1'),(141,2808,'_hide_global_header','field_5f3288799a622'),(142,2808,'use_custom_logo','0'),(143,2808,'_use_custom_logo','field_5c718923b2115'),(144,2808,'buttons_background_color',''),(145,2808,'_buttons_background_color','field_5c721ec248a3d'),(146,2808,'buttons_text_color',''),(147,2808,'_buttons_text_color','field_5c721ed648a3e'),(148,2808,'buttons_border_color',''),(149,2808,'_buttons_border_color','field_5c723ccb7677b'),(150,2808,'buttons_hover_background_color',''),(151,2808,'_buttons_hover_background_color','field_5c72341d85272'),(152,2808,'buttons_hover_text_color',''),(153,2808,'_buttons_hover_text_color','field_5c7235491991b'),(154,2808,'buttons_hover_border_color',''),(155,2808,'_buttons_hover_border_color','field_5c7235571991c'),(156,2808,'btn2_buttons_background_color',''),(157,2808,'_btn2_buttons_background_color','field_5c721f1648a42'),(158,2808,'btn2_buttons_text_color',''),(159,2808,'_btn2_buttons_text_color','field_5c721f1f48a43'),(160,2808,'btn2_buttons_hover_background_color',''),(161,2808,'_btn2_buttons_hover_background_color','field_5c72341d8527244'),(162,2808,'btn2_buttons_hover_text_color',''),(163,2808,'_btn2_buttons_hover_text_color','field_5c7235491991b34'),(164,2808,'btn2_buttons_hover_border_color',''),(165,2808,'_btn2_buttons_hover_border_color','field_5c7235571991ccf'),(166,2808,'btn2_button_custom_css',''),(167,2808,'_btn2_button_custom_css','field_5c72342c85273'),(168,2808,'button_2_custom_css',''),(169,2808,'_button_2_custom_css','field_5f5e29a676d5e'),(170,2808,'hide_global_footer','1'),(171,2808,'_hide_global_footer','field_5b5ab66bdd531'),(172,2808,'_elementor_edit_mode','builder'),(173,2808,'_elementor_template_type','wp-page'),(174,2808,'_elementor_version','3.4.3'),(175,2808,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us to recieve a free estimate on your vehicle!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(481,2851,'_wp_page_template','page-templates/template-page-builder.php'),(482,2851,'_elementor_edit_mode','builder'),(483,2851,'_elementor_template_type','wp-page'),(484,2851,'_elementor_version','3.4.3'),(485,2851,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.28099999999999880628820392303168773651123046875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-6.png\",\"id\":5216},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":18.245999999999998664179656771011650562286376953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-5.png\",\"id\":5215},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.71900000000000119371179607696831226348876953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-4-1.png\",\"id\":5231},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d8ef493\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.2629999999999999005240169935859739780426025390625,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"e021f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-3.png\",\"id\":5213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d41944\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":14.105000000000000426325641456060111522674560546875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"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\":[{\"id\":\"e36be66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-2.png\",\"id\":5212},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"73\",\"bottom\":\"0\",\"left\":\"73\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"248caab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.3680000000000003268496584496460855007171630859375,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f57bef2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-1.png\",\"id\":5217},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"120\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(176,2808,'_oembed_87b947de7716efd8672902a3875e0696','<iframe title=\"Video Placeholder\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(177,2808,'_oembed_time_87b947de7716efd8672902a3875e0696','1600095692'),(178,2808,'_wp_page_template','default'),(179,2808,'hide_global_header','1'),(180,2808,'_hide_global_header','field_5f3288799a622'),(181,2808,'use_custom_logo','0'),(182,2808,'_use_custom_logo','field_5c718923b2115'),(183,2808,'buttons_background_color',''),(184,2808,'_buttons_background_color','field_5c721ec248a3d'),(185,2808,'buttons_text_color',''),(186,2808,'_buttons_text_color','field_5c721ed648a3e'),(187,2808,'buttons_border_color',''),(188,2808,'_buttons_border_color','field_5c723ccb7677b'),(189,2808,'buttons_hover_background_color',''),(190,2808,'_buttons_hover_background_color','field_5c72341d85272'),(191,2808,'buttons_hover_text_color',''),(192,2808,'_buttons_hover_text_color','field_5c7235491991b'),(193,2808,'buttons_hover_border_color',''),(194,2808,'_buttons_hover_border_color','field_5c7235571991c'),(195,2808,'btn2_buttons_background_color',''),(196,2808,'_btn2_buttons_background_color','field_5c721f1648a42'),(197,2808,'btn2_buttons_text_color',''),(198,2808,'_btn2_buttons_text_color','field_5c721f1f48a43'),(199,2808,'btn2_buttons_hover_background_color',''),(200,2808,'_btn2_buttons_hover_background_color','field_5c72341d8527244'),(201,2808,'btn2_buttons_hover_text_color',''),(202,2808,'_btn2_buttons_hover_text_color','field_5c7235491991b34'),(203,2808,'btn2_buttons_hover_border_color',''),(204,2808,'_btn2_buttons_hover_border_color','field_5c7235571991ccf'),(205,2808,'btn2_button_custom_css',''),(206,2808,'_btn2_button_custom_css','field_5c72342c85273'),(207,2808,'button_2_custom_css',''),(208,2808,'_button_2_custom_css','field_5f5e29a676d5e'),(209,2808,'hide_global_footer','1'),(210,2808,'_hide_global_footer','field_5b5ab66bdd531'),(211,2808,'_elementor_edit_mode','builder'),(212,2808,'_elementor_template_type','wp-page'),(213,2808,'_elementor_version','3.4.3'),(214,2808,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us to recieve a free estimate on your vehicle!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(575,2866,'_elementor_template_type','wp-page'),(576,2866,'_elementor_version','3.4.3'),(577,2866,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(440,2808,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(451,2843,'_wp_page_template','page-templates/template-page-builder.php'),(452,2843,'_elementor_edit_mode','builder'),(453,2843,'_elementor_template_type','wp-page'),(454,2843,'_elementor_version','3.4.3'),(455,2843,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.28099999999999880628820392303168773651123046875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-6.png\",\"id\":5216},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":18.245999999999998664179656771011650562286376953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-5.png\",\"id\":5215},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.71900000000000119371179607696831226348876953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-4-1.png\",\"id\":5231},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d8ef493\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.2629999999999999005240169935859739780426025390625,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"e021f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-3.png\",\"id\":5213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d41944\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":14.105000000000000426325641456060111522674560546875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"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\":[{\"id\":\"e36be66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-2.png\",\"id\":5212},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"73\",\"bottom\":\"0\",\"left\":\"73\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"248caab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.3680000000000003268496584496460855007171630859375,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f57bef2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-1.png\",\"id\":5217},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"120\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(442,2841,'_wp_attached_file','2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg'),(501,2854,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(502,2855,'_wp_page_template','page-templates/template-page-builder.php'),(503,2855,'_elementor_edit_mode','builder'),(504,2855,'_elementor_template_type','wp-page'),(505,2855,'_elementor_version','3.4.3'),(506,2855,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.28-AM.png\",\"id\":2847,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(215,2808,'_oembed_87b947de7716efd8672902a3875e0696','<iframe title=\"Video Placeholder\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(216,2808,'_oembed_time_87b947de7716efd8672902a3875e0696','1600095692'),(217,2808,'body_background_color',''),(218,2808,'_body_background_color','field_5c721ec24addf'),(428,2839,'_wp_page_template','page-templates/template-page-builder.php'),(429,2839,'_elementor_edit_mode','builder'),(430,2839,'_elementor_template_type','wp-page'),(431,2839,'_elementor_version','3.1.1'),(432,2839,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9b681fe\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"7a54a451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":11.1400000000000005684341886080801486968994140625,\"_inline_size_mobile\":40,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"34c87f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-white.svg\",\"id\":5079},\"image_width\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]},\"logo_type\":\"white\"},\"elements\":[],\"widgetType\":\"ama-logo\"}],\"isInner\":true},{\"id\":\"3a77df86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":88.8599999999999994315658113919198513031005859375,\"align\":\"flex-end\",\"_inline_size_mobile\":60,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"7f8740b\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Learn More\",\"primary_menu\":\"main-menu\",\"menu_align\":\"start\",\"use_primary_menu\":\"\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#473BF0\",\"megamenu_panel_width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"megamenu_title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"megamenu_width_type\":\"container\",\"item_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"13\",\"isLinked\":false},\"megamenu_title_typography_typography\":\"custom\",\"megamenu_title_typography_text_transform\":\"uppercase\",\"megamenu_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"megamenu_title_color\":\"#7A7A7A\",\"_z_index\":3,\"__globals__\":{\"megamenu_title_color\":\"\",\"menu_hover_color\":\"\"},\"_element_width\":\"auto\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"dripdown_typography_typography\":\"custom\",\"dripdown_typography_font_weight\":\"500\",\"megamenu_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"10\",\"bottom\":\"25\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"},{\"id\":\"1ae02da\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"button_type\":\"boxed\",\"boxed_btn_background\":\"#473BF0\",\"button_align\":\"right\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"400\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"15.5\",\"right\":\"31\",\"bottom\":\"15.5\",\"left\":\"31\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.28099999999999880628820392303168773651123046875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-6.png\",\"id\":5216},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":18.245999999999998664179656771011650562286376953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-5.png\",\"id\":5215},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.71900000000000119371179607696831226348876953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-4-1.png\",\"id\":5231},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d8ef493\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.2629999999999999005240169935859739780426025390625,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"e021f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-3.png\",\"id\":5213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d41944\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":14.105000000000000426325641456060111522674560546875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"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\":[{\"id\":\"e36be66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-2.png\",\"id\":5212},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"73\",\"bottom\":\"0\",\"left\":\"73\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"248caab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.3680000000000003268496584496460855007171630859375,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f57bef2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-1.png\",\"id\":5217},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"120\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"548401d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"84e52f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f66c0\",\"elType\":\"widget\",\"settings\":{\"pricing_style\":\"classic\",\"first_tab_title\":\"Monthly \",\"second_tab_title\":\"Yearly \",\"price_offer\":\"Save 25%\",\"pricing_list\":[{\"_id\":\"3671f96\",\"title\":\"Starter\",\"features\":\"<p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Commercial License<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 100+ HTML UI Elements<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 01 Domain Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2866\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/small-remove.svg\\\" alt=\\\"\\\" \\/>\\u00a0 6 Month Premium Support<\\/p><p><img class=\\\"alignnone size-full wp-image-2866\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/small-remove.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Lifetime Updates\\u00a0<\\/p>\",\"price_monthly\":\"19\",\"price_duration_monthly\":\"\\/ month\",\"price_yearly\":\"49\",\"price_duration_yearly\":\"\\/per year\",\"button_label\":\"Start Free Trial\",\"price_currency\":\"$\",\"bottom_info\":\"No credit card required\",\"btn_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"price_subtitle_monthly\":\"billed monthly\",\"price_subtitle_yearly\":\"billed Yearly\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standard\",\"features\":\"<p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Commercial License<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 100+ HTML UI Elements<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 01 Domain Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 <strong>6 Month Premium Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2866\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/small-remove.svg\\\" alt=\\\"\\\" \\/>\\u00a0 \\u00a0Lifetime Updates<\\/p>\",\"price_monthly\":\"49\",\"price_duration_monthly\":\"\\/ month\",\"price_yearly\":\"150\",\"price_duration_yearly\":\"\\/per year\",\"button_label\":\"Start Free Trial\",\"price_currency\":\"$\",\"bottom_info\":\"No credit card required\",\"_id\":\"3f19f9d\",\"btn_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"price_subtitle_monthly\":\"billed monthly\",\"price_subtitle_yearly\":\"billed Yearly\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Premium\",\"features\":\"<p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Commercial License<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 100+ HTML UI Elements<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 01 Domain Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 <strong>6 Month Premium Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 <strong>Lifetime Updates<\\/strong><\\/p>\",\"price_monthly\":\"99\",\"price_duration_monthly\":\"\\/ month\",\"price_yearly\":\"300\",\"price_duration_yearly\":\"\\/per year\",\"button_label\":\"Start Free Trial\",\"price_currency\":\"$\",\"bottom_info\":\"No credit card required\",\"_id\":\"918ed4f\",\"btn_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"price_subtitle_monthly\":\"billed monthly\",\"price_subtitle_yearly\":\"billed Yearly\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"bottom_typo_typography\":\"custom\",\"bottom_typo_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"bottom_typo_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"box_padding_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true},\"btn_color\":\"#FFFFFF\",\"btn_bg_color\":\"#473BF0\",\"__globals__\":{\"btn_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"shadepro-price-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca1596d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"102\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49adbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"486f685\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/quote.png\",\"id\":2881},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dc308a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201cOMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.\\u201d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#161C2D\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be6bc93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Diego Morata\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7711f26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"4a6cd92\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"f3fbc1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/quote.png\",\"id\":2881},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91a8de5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201cSimply the best. Better than all the rest. I\\u2019d recommend this product to beginners and advanced users.\\u201d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#161C2D\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa04193\",\"elType\":\"widget\",\"settings\":{\"title\":\"Franklin Hicks\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49193e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digital Marketer\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}] '),(244,2811,'_edit_last','1'),(245,2811,'_wp_page_template','default'),(246,2811,'include_rules','1'),(243,2811,'inline_featured_image','0'),(221,2808,'_wxr_import_has_attachment_refs','1'),(425,2838,'_wp_attached_file','2021/09/istockphoto-1265517611-612x612-1.jpeg'),(426,2838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:612;s:4:\"file\";s:45:\"2021/09/istockphoto-1265517611-612x612-1.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"istockphoto-1265517611-612x612-1-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:45:\"istockphoto-1265517611-612x612-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"istockphoto-1265517611-612x612-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:45:\"istockphoto-1265517611-612x612-1-492x492.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"istockphoto-1265517611-612x612-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:45:\"istockphoto-1265517611-612x612-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"istockphoto-1265517611-612x612-1-492x492.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"istockphoto-1265517611-612x612-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:67:\"100% quality guarantee like and 5 stars badge black and gold color.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:67:\"100% quality guarantee like and 5 stars badge black and gold color.\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(224,2808,'_edit_lock','1633495520:1'),(225,7,'_edit_lock','1631203777:1'),(226,2809,'_elementor_edit_mode','builder'),(227,2809,'_elementor_template_type','kit'),(229,7,'inline_featured_image','0'),(230,7,'_wp_page_template','default'),(231,7,'_elementor_page_settings','a:13:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#0277D3\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#D3B601\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#363636\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#106684\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:12:\"Trebuchet MS\";s:9:\"site_name\";s:7:\"C and C\";s:16:\"site_description\";s:10:\"Motorsport\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(232,7,'_elementor_data','[]'),(233,2810,'_elementor_edit_mode','builder'),(234,2810,'_elementor_template_type','kit'),(241,7,'_elementor_css','a:6:{s:4:\"time\";i:1631202570;s:5:\"fonts\";a:3:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";i:4;s:12:\"Trebuchet MS\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(236,2810,'_wp_page_template','default'),(237,2810,'_elementor_page_settings','a:11:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#0277D3\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#D3B601\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#363636\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#106684\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:7:\"C and C\";s:16:\"site_description\";s:10:\"Motorsport\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(238,2810,'_elementor_data','[]'),(239,7,'_elementor_page_assets','a:0:{}'),(240,7,'_elementor_version','3.4.3'),(247,2811,'_include_rules','field_600e8b3a91509'),(248,2811,'exclude_rules',''),(249,2811,'_exclude_rules','field_600e8d139150c'),(250,2812,'include_rules',''),(251,2812,'_include_rules','field_600e8b3a91509'),(252,2812,'exclude_rules',''),(253,2812,'_exclude_rules','field_600e8d139150c'),(254,2811,'_edit_lock','1633495565:1'),(255,2811,'_elementor_edit_mode','builder'),(256,2811,'_elementor_template_type','wp-post'),(257,2811,'_elementor_version','3.4.3'),(273,2816,'_wp_page_template','default'),(272,2811,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Free Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/candc117.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(264,2814,'_wp_page_template','default'),(265,2814,'_elementor_edit_mode','builder'),(266,2814,'_elementor_template_type','wp-post'),(267,2814,'_elementor_version','3.4.3'),(268,2815,'_wp_page_template','default'),(269,2815,'_elementor_edit_mode','builder'),(270,2815,'_elementor_template_type','wp-post'),(271,2815,'_elementor_version','3.4.3'),(274,2816,'_elementor_edit_mode','builder'),(275,2816,'_elementor_template_type','wp-post'),(276,2816,'_elementor_version','3.4.3'),(277,2816,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f983b91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\"><strong>Contact us today for a Free Estimate!<\\/strong><\\/span><\\/p>\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(278,2811,'_elementor_page_assets','a:0:{}'),(281,2817,'_wp_page_template','default'),(282,2817,'_elementor_edit_mode','builder'),(283,2817,'_elementor_template_type','wp-post'),(284,2817,'_elementor_version','3.4.3'),(285,2817,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f983b91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\"><strong>Contact us today for a Free Estimate!<\\/strong><\\/span><\\/p>\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(286,2817,'_elementor_page_assets','a:0:{}'),(287,2817,'_elementor_css','a:6:{s:4:\"time\";i:1631203020;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:\"\";}'),(288,2818,'_wp_page_template','default'),(289,2818,'_elementor_edit_mode','builder'),(290,2818,'_elementor_template_type','wp-post'),(291,2818,'_elementor_version','3.4.3'),(292,2818,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f983b91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\"><strong>Contact us today for a Free Estimate!<\\/strong><\\/span><\\/p>\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(293,2818,'_elementor_page_assets','a:0:{}'),(294,2818,'_elementor_css','a:6:{s:4:\"time\";i:1631203020;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:\"\";}'),(295,2819,'_wp_page_template','default'),(296,2819,'_elementor_edit_mode','builder'),(297,2819,'_elementor_template_type','wp-post'),(298,2819,'_elementor_version','3.4.3'),(299,2819,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f983b91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\"><strong>Contact us today for a Free Estimate!<\\/strong><\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(300,2819,'_elementor_page_assets','a:0:{}'),(301,2819,'_elementor_css','a:6:{s:4:\"time\";i:1631203020;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:\"\";}'),(303,2820,'_wp_page_template','default'),(304,2820,'_elementor_edit_mode','builder'),(305,2820,'_elementor_template_type','wp-post'),(306,2820,'_elementor_version','3.4.3'),(307,2820,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f983b91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\"><strong>Contact us today for a Free Estimate!<\\/strong><\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(308,2820,'_elementor_page_assets','a:0:{}'),(309,2821,'_wp_page_template','default'),(310,2821,'_elementor_edit_mode','builder'),(311,2821,'_elementor_template_type','wp-post'),(312,2821,'_elementor_version','3.4.3'),(313,2821,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f983b91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\"><strong>Contact us today for a Free Estimate!<\\/strong><\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(314,2821,'_elementor_page_assets','a:0:{}'),(315,2822,'_wp_page_template','default'),(316,2822,'_elementor_edit_mode','builder'),(317,2822,'_elementor_template_type','wp-post'),(318,2822,'_elementor_version','3.4.3'),(319,2822,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"bc2f1ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(320,2822,'_elementor_page_assets','a:0:{}'),(322,2823,'_wp_page_template','default'),(323,2823,'_elementor_edit_mode','builder'),(324,2823,'_elementor_template_type','wp-post'),(325,2823,'_elementor_version','3.4.3'),(326,2823,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"bc2f1ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(327,2823,'_elementor_page_assets','a:0:{}'),(328,2824,'_wp_page_template','default'),(329,2824,'_elementor_edit_mode','builder'),(330,2824,'_elementor_template_type','wp-post'),(331,2824,'_elementor_version','3.4.3'),(332,2824,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"bc2f1ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(333,2824,'_elementor_page_assets','a:0:{}'),(334,2825,'_wp_page_template','default'),(335,2825,'_elementor_edit_mode','builder'),(336,2825,'_elementor_template_type','wp-post'),(337,2825,'_elementor_version','3.4.3'),(338,2825,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"bc2f1ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(339,2825,'_elementor_page_assets','a:0:{}'),(341,2826,'_wp_page_template','default'),(342,2826,'_elementor_edit_mode','builder'),(343,2826,'_elementor_template_type','wp-post'),(344,2826,'_elementor_version','3.4.3'),(345,2826,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"bc2f1ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(346,2826,'_elementor_page_assets','a:0:{}'),(347,2827,'_wp_page_template','default'),(348,2827,'_elementor_edit_mode','builder'),(349,2827,'_elementor_template_type','wp-post'),(350,2827,'_elementor_version','3.4.3'),(351,2827,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"bc2f1ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(352,2827,'_elementor_page_assets','a:0:{}'),(353,2828,'_wp_page_template','default'),(354,2828,'_elementor_edit_mode','builder'),(355,2828,'_elementor_template_type','wp-post'),(356,2828,'_elementor_version','3.4.3'),(357,2828,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(358,2828,'_elementor_page_assets','a:0:{}'),(360,2829,'_wp_page_template','default'),(361,2829,'_elementor_edit_mode','builder'),(362,2829,'_elementor_template_type','wp-post'),(363,2829,'_elementor_version','3.4.3'),(364,2829,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(365,2829,'_elementor_page_assets','a:0:{}'),(366,2830,'_wp_page_template','default'),(367,2830,'_elementor_edit_mode','builder'),(368,2830,'_elementor_template_type','wp-post'),(369,2830,'_elementor_version','3.4.3'),(370,2830,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(371,2830,'_elementor_page_assets','a:0:{}'),(372,2831,'_wp_page_template','default'),(373,2831,'_elementor_edit_mode','builder'),(374,2831,'_elementor_template_type','wp-post'),(375,2831,'_elementor_version','3.4.3'),(376,2831,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\"},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee66caf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false}]'),(377,2831,'_elementor_page_assets','a:0:{}'),(381,2833,'_wp_page_template','default'),(382,2833,'_elementor_edit_mode','builder'),(383,2833,'_elementor_template_type','wp-post'),(384,2833,'_elementor_version','3.4.3'),(385,2833,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\"},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee66caf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false}]'),(379,2832,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png'),(380,2832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:676;s:6:\"height\";i:150;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.04.34-AM-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-09-09-at-9.04.34-AM-255x150.png\";s:5:\"width\";i:255;s:6:\"height\";i:150;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-09-09-at-9.04.34-AM-492x109.png\";s:5:\"width\";i:492;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.04.34-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.04.34-AM-255x150.png\";s:5:\"width\";i:255;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png\";s:5:\"width\";i:492;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.04.34-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(386,2833,'_elementor_page_assets','a:0:{}'),(387,2834,'_wp_page_template','default'),(388,2834,'_elementor_edit_mode','builder'),(389,2834,'_elementor_template_type','wp-post'),(390,2834,'_elementor_version','3.4.3'),(391,2834,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\"},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee66caf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false}]'),(392,2834,'_elementor_page_assets','a:0:{}'),(393,2835,'_wp_page_template','default'),(394,2835,'_elementor_edit_mode','builder'),(395,2835,'_elementor_template_type','wp-post'),(396,2835,'_elementor_version','3.4.3'),(397,2835,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\"},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee66caf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false}]'),(398,2835,'_elementor_page_assets','a:0:{}'),(847,2896,'_wp_page_template','default'),(848,2896,'_elementor_edit_mode','builder'),(849,2896,'_elementor_template_type','wp-post'),(850,2896,'_elementor_version','3.4.3'),(851,2896,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\"},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee66caf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false}]'),(401,2836,'_elementor_edit_mode','builder'),(402,2836,'_wp_page_template','default'),(403,2836,'_elementor_template_type','wp-post'),(404,2836,'_elementor_version','3.4.3'),(405,2836,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\"},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee66caf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false}]'),(406,2836,'_elementor_page_assets','a:0:{}'),(407,2836,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}}}}s: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:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:18:\"wp-widget-nav_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(408,2836,'_elementor_css','a:6:{s:4:\"time\";i:1631203568;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(409,2811,'include_rules_0_include_on','all'),(410,2811,'_include_rules_0_include_on','field_600e8bd99150a'),(411,2836,'include_rules','1'),(412,2836,'_include_rules','field_600e8b3a91509'),(413,2836,'exclude_rules',''),(414,2836,'_exclude_rules','field_600e8d139150c'),(415,2836,'include_rules_0_include_on','all'),(416,2836,'_include_rules_0_include_on','field_600e8bd99150a'),(456,2843,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(457,2844,'_wp_page_template','page-templates/template-page-builder.php'),(458,2844,'_elementor_edit_mode','builder'),(459,2844,'_elementor_template_type','wp-page'),(460,2844,'_elementor_version','3.4.3'),(461,2844,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.28099999999999880628820392303168773651123046875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-6.png\",\"id\":5216},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":18.245999999999998664179656771011650562286376953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-5.png\",\"id\":5215},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.71900000000000119371179607696831226348876953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-4-1.png\",\"id\":5231},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d8ef493\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.2629999999999999005240169935859739780426025390625,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"e021f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-3.png\",\"id\":5213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d41944\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":14.105000000000000426325641456060111522674560546875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"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\":[{\"id\":\"e36be66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-2.png\",\"id\":5212},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"73\",\"bottom\":\"0\",\"left\":\"73\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"248caab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.3680000000000003268496584496460855007171630859375,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f57bef2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-1.png\",\"id\":5217},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"120\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(433,2839,'_elementor_css','a:6:{s:4:\"time\";i:1631204887;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:2;s:3:\"svg\";i:29;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(434,2840,'_wp_page_template','page-templates/template-page-builder.php'),(435,2840,'_elementor_edit_mode','builder'),(436,2840,'_elementor_template_type','wp-page'),(437,2840,'_elementor_version','3.1.1'),(438,2840,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9b681fe\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"7a54a451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":11.1400000000000005684341886080801486968994140625,\"_inline_size_mobile\":40,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"34c87f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-white.svg\",\"id\":5079},\"image_width\":{\"unit\":\"px\",\"size\":113,\"sizes\":[]},\"logo_type\":\"white\"},\"elements\":[],\"widgetType\":\"ama-logo\"}],\"isInner\":true},{\"id\":\"3a77df86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":88.8599999999999994315658113919198513031005859375,\"align\":\"flex-end\",\"_inline_size_mobile\":60,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"7f8740b\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Learn More\",\"primary_menu\":\"main-menu\",\"menu_align\":\"start\",\"use_primary_menu\":\"\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#473BF0\",\"megamenu_panel_width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"megamenu_title_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"megamenu_width_type\":\"container\",\"item_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"13\",\"isLinked\":false},\"megamenu_title_typography_typography\":\"custom\",\"megamenu_title_typography_text_transform\":\"uppercase\",\"megamenu_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"megamenu_title_color\":\"#7A7A7A\",\"_z_index\":3,\"__globals__\":{\"megamenu_title_color\":\"\",\"menu_hover_color\":\"\"},\"_element_width\":\"auto\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_weight\":\"500\",\"dripdown_typography_typography\":\"custom\",\"dripdown_typography_font_weight\":\"500\",\"megamenu_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"10\",\"bottom\":\"25\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"},{\"id\":\"1ae02da\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"button_type\":\"boxed\",\"boxed_btn_background\":\"#473BF0\",\"button_align\":\"right\",\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"heading_typography_font_weight\":\"400\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"15.5\",\"right\":\"31\",\"bottom\":\"15.5\",\"left\":\"31\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.28099999999999880628820392303168773651123046875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-6.png\",\"id\":5216},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":18.245999999999998664179656771011650562286376953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-5.png\",\"id\":5215},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.71900000000000119371179607696831226348876953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-4-1.png\",\"id\":5231},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d8ef493\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.2629999999999999005240169935859739780426025390625,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"e021f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-3.png\",\"id\":5213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d41944\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":14.105000000000000426325641456060111522674560546875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"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\":[{\"id\":\"e36be66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-2.png\",\"id\":5212},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"73\",\"bottom\":\"0\",\"left\":\"73\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"248caab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.3680000000000003268496584496460855007171630859375,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f57bef2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-1.png\",\"id\":5217},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"120\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"548401d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"84e52f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f66c0\",\"elType\":\"widget\",\"settings\":{\"pricing_style\":\"classic\",\"first_tab_title\":\"Monthly \",\"second_tab_title\":\"Yearly \",\"price_offer\":\"Save 25%\",\"pricing_list\":[{\"_id\":\"3671f96\",\"title\":\"Starter\",\"features\":\"<p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Commercial License<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 100+ HTML UI Elements<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 01 Domain Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2866\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/small-remove.svg\\\" alt=\\\"\\\" \\/>\\u00a0 6 Month Premium Support<\\/p><p><img class=\\\"alignnone size-full wp-image-2866\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/small-remove.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Lifetime Updates\\u00a0<\\/p>\",\"price_monthly\":\"19\",\"price_duration_monthly\":\"\\/ month\",\"price_yearly\":\"49\",\"price_duration_yearly\":\"\\/per year\",\"button_label\":\"Start Free Trial\",\"price_currency\":\"$\",\"bottom_info\":\"No credit card required\",\"btn_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"price_subtitle_monthly\":\"billed monthly\",\"price_subtitle_yearly\":\"billed Yearly\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standard\",\"features\":\"<p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Commercial License<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 100+ HTML UI Elements<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 01 Domain Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 <strong>6 Month Premium Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2866\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/small-remove.svg\\\" alt=\\\"\\\" \\/>\\u00a0 \\u00a0Lifetime Updates<\\/p>\",\"price_monthly\":\"49\",\"price_duration_monthly\":\"\\/ month\",\"price_yearly\":\"150\",\"price_duration_yearly\":\"\\/per year\",\"button_label\":\"Start Free Trial\",\"price_currency\":\"$\",\"bottom_info\":\"No credit card required\",\"_id\":\"3f19f9d\",\"btn_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"price_subtitle_monthly\":\"billed monthly\",\"price_subtitle_yearly\":\"billed Yearly\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Premium\",\"features\":\"<p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 Commercial License<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 100+ HTML UI Elements<\\/strong><\\/p><p><strong><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 01 Domain Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 <strong>6 Month Premium Support<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2867\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/Path.svg\\\" alt=\\\"\\\" \\/>\\u00a0 <strong>Lifetime Updates<\\/strong><\\/p>\",\"price_monthly\":\"99\",\"price_duration_monthly\":\"\\/ month\",\"price_yearly\":\"300\",\"price_duration_yearly\":\"\\/per year\",\"button_label\":\"Start Free Trial\",\"price_currency\":\"$\",\"bottom_info\":\"No credit card required\",\"_id\":\"918ed4f\",\"btn_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"price_subtitle_monthly\":\"billed monthly\",\"price_subtitle_yearly\":\"billed Yearly\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"bottom_typo_typography\":\"custom\",\"bottom_typo_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"bottom_typo_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"box_padding_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true},\"btn_color\":\"#FFFFFF\",\"btn_bg_color\":\"#473BF0\",\"__globals__\":{\"btn_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"shadepro-price-table\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca1596d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"102\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49adbd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"51\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"486f685\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/quote.png\",\"id\":2881},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dc308a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201cOMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.\\u201d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#161C2D\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be6bc93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Diego Morata\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7711f26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Web Developer\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"4a6cd92\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"f3fbc1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/quote.png\",\"id\":2881},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91a8de5\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201cSimply the best. Better than all the rest. I\\u2019d recommend this product to beginners and advanced users.\\u201d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"29\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#161C2D\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa04193\",\"elType\":\"widget\",\"settings\":{\"title\":\"Franklin Hicks\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49193e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digital Marketer\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}] '),(439,2840,'_elementor_css','a:6:{s:4:\"time\";i:1631204887;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:2;s:3:\"svg\";i:29;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(462,2844,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(477,2849,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.38.39-AM.png'),(478,2849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:644;s:6:\"height\";i:210;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.38.39-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2021-09-09-at-9.38.39-AM-300x98.png\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.38.39-AM-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-09-09-at-9.38.39-AM-255x210.png\";s:5:\"width\";i:255;s:6:\"height\";i:210;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-09-09-at-9.38.39-AM-492x160.png\";s:5:\"width\";i:492;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.38.39-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.38.39-AM-255x210.png\";s:5:\"width\";i:255;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.38.39-AM-492x160.png\";s:5:\"width\";i:492;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.38.39-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(471,2846,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.35.14-AM.png'),(472,2846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:274;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.35.14-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.14-AM-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.14-AM-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-09-09-at-9.35.14-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-09-at-9.35.14-AM-492x201.png\";s:5:\"width\";i:492;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.14-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.14-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.14-AM-492x201.png\";s:5:\"width\";i:492;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.14-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(473,2847,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.35.28-AM.png'),(474,2847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:504;s:6:\"height\";i:226;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.35.28-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.28-AM-300x135.png\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.28-AM-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-09-09-at-9.35.28-AM-255x226.png\";s:5:\"width\";i:255;s:6:\"height\";i:226;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-09-09-at-9.35.28-AM-492x221.png\";s:5:\"width\";i:492;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.28-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.28-AM-255x226.png\";s:5:\"width\";i:255;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.28-AM-492x221.png\";s:5:\"width\";i:492;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.35.28-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(475,2848,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.36.05-AM.png'),(476,2848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:696;s:6:\"height\";i:264;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.36.05-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.36.05-AM-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.36.05-AM-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-09-09-at-9.36.05-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-09-at-9.36.05-AM-492x187.png\";s:5:\"width\";i:492;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.36.05-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.36.05-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.36.05-AM-492x187.png\";s:5:\"width\";i:492;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.36.05-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(479,2850,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.39.49-AM.png'),(480,2850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:788;s:6:\"height\";i:274;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.39.49-AM.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.39.49-AM-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.39.49-AM-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-09-09-at-9.39.49-AM-768x267.png\";s:5:\"width\";i:768;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.39.49-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-09-at-9.39.49-AM-492x171.png\";s:5:\"width\";i:492;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.39.49-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.39.49-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.39.49-AM-492x171.png\";s:5:\"width\";i:492;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.39.49-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(486,2851,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(487,2852,'_wp_page_template','page-templates/template-page-builder.php'),(488,2852,'_elementor_edit_mode','builder'),(489,2852,'_elementor_template_type','wp-page'),(490,2852,'_elementor_version','3.4.3'),(491,2852,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\",\"padding\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.28099999999999880628820392303168773651123046875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-6.png\",\"id\":5216},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":18.245999999999998664179656771011650562286376953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-5.png\",\"id\":5215},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":17.71900000000000119371179607696831226348876953125,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-4-1.png\",\"id\":5231},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d8ef493\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.2629999999999999005240169935859739780426025390625,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"e021f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-3.png\",\"id\":5213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"width\":{\"unit\":\"vw\",\"size\":\"\",\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7d41944\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":14.105000000000000426325641456060111522674560546875,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"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\":[{\"id\":\"e36be66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-2.png\",\"id\":5212},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"100\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"73\",\"bottom\":\"0\",\"left\":\"73\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"248caab\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":15.3680000000000003268496584496460855007171630859375,\"_inline_size_mobile\":50,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f57bef2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/11\\/logo-1.png\",\"id\":5217},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"120\",\"height\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ECF2F7\",\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"40\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing & Plans\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(492,2852,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(507,2855,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(509,2856,'_wp_page_template','page-templates/template-page-builder.php'),(510,2856,'_elementor_edit_mode','builder'),(511,2856,'_elementor_template_type','wp-page'),(512,2856,'_elementor_version','3.4.3'),(513,2856,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(514,2856,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(515,2857,'_wp_page_template','page-templates/template-page-builder.php'),(516,2857,'_elementor_edit_mode','builder'),(517,2857,'_elementor_template_type','wp-page'),(518,2857,'_elementor_version','3.4.3'),(519,2857,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(520,2857,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(522,2858,'_wp_page_template','page-templates/template-page-builder.php'),(523,2858,'_elementor_edit_mode','builder'),(524,2858,'_elementor_template_type','wp-page'),(525,2858,'_elementor_version','3.4.3'),(526,2858,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(527,2858,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(528,2859,'_wp_page_template','page-templates/template-page-builder.php'),(529,2859,'_elementor_edit_mode','builder'),(530,2859,'_elementor_template_type','wp-page'),(531,2859,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (532,2859,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF85\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"d9201db\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas H.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(533,2859,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(573,2866,'_wp_page_template','page-templates/template-page-builder.php'),(574,2866,'_elementor_edit_mode','builder'),(535,2860,'_wp_page_template','page-templates/template-page-builder.php'),(536,2860,'_elementor_edit_mode','builder'),(537,2860,'_elementor_template_type','wp-page'),(538,2860,'_elementor_version','3.4.3'),(539,2860,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(540,2860,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(541,2861,'_wp_page_template','page-templates/template-page-builder.php'),(542,2861,'_elementor_edit_mode','builder'),(543,2861,'_elementor_template_type','wp-page'),(544,2861,'_elementor_version','3.4.3'),(545,2861,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(546,2861,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(559,2864,'_wp_page_template','page-templates/template-page-builder.php'),(560,2864,'_elementor_edit_mode','builder'),(561,2864,'_elementor_template_type','wp-page'),(562,2864,'_elementor_version','3.4.3'),(563,2864,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(548,2862,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png'),(549,2862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:708;s:6:\"height\";i:518;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.02-AM-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-09-09-at-9.22.02-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-09-at-9.22.02-AM-492x360.png\";s:5:\"width\";i:492;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.02-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.02-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png\";s:5:\"width\";i:492;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.02-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(587,2867,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(588,2867,'_elementor_css','a:6:{s:4:\"time\";i:1631250619;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:3:\"svg\";i:2;s:0:\"\";i:24;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(589,2868,'_wp_page_template','page-templates/template-page-builder.php'),(590,2868,'_elementor_edit_mode','builder'),(591,2868,'_elementor_template_type','wp-page'),(592,2868,'_elementor_version','3.4.3'),(593,2868,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(582,2867,'_wp_page_template','page-templates/template-page-builder.php'),(583,2867,'_elementor_edit_mode','builder'),(584,2867,'_elementor_template_type','wp-page'),(585,2867,'_elementor_version','3.4.3'),(586,2867,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(564,2864,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(565,2864,'_elementor_css','a:6:{s:4:\"time\";i:1631228233;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:3:\"svg\";i:7;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(566,2865,'_wp_page_template','page-templates/template-page-builder.php'),(567,2865,'_elementor_edit_mode','builder'),(568,2865,'_elementor_template_type','wp-page'),(569,2865,'_elementor_version','3.4.3'),(570,2865,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"774756e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/BG.jpg\",\"id\":2818},\"_z_index\":1,\"_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"__globals__\":{\"play_icon_color\":\"globals\\/colors?id=accent\"},\"play_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service2.svg\",\"id\":2838},\"library\":\"svg\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cc7555\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#171717\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E6ECF1\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"688c16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a957bc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.35.14-AM.png\",\"id\":2846,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61627cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"d1afa70\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.43.49-AM.png\",\"id\":2853,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4f5365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"aa8066e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.36.05-AM.png\",\"id\":2848,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a4ee673\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"bde489a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.38.39-AM.png\",\"id\":2849,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c95327e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_mobile\":50,\"_inline_size_tablet\":25},\"elements\":[{\"id\":\"710de87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.39.49-AM.png\",\"id\":2850,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bc5d88\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"132d94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.9470000000000027284841053187847137451171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5ab35bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-Laptop.jpg\",\"id\":2844},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"927e4f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"d2c3c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Track your progress with our advanced site.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4554e21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0e8779\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"f14158c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-4.png\",\"id\":2850},\"image_size\":\"full\",\"align\":\"right\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":42,\"blur\":44,\"spread\":0,\"color\":\"rgba(0.9999999999999964, 23.00000000000002, 48, 0.12)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-5.png\",\"id\":2855},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c633d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_2.png\",\"id\":2853},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\\\"\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(571,2865,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(572,2865,'_elementor_css','a:6:{s:4:\"time\";i:1631228233;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:3:\"svg\";i:7;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(594,2868,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(595,2868,'_elementor_css','a:6:{s:4:\"time\";i:1631250619;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:3:\"svg\";i:2;s:0:\"\";i:24;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(596,2869,'_wp_page_template','page-templates/template-page-builder.php'),(597,2869,'_elementor_edit_mode','builder'),(598,2869,'_elementor_template_type','wp-page'),(599,2869,'_elementor_version','3.4.3'),(600,2869,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\"},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(601,2869,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(602,2869,'_elementor_css','a:6:{s:4:\"time\";i:1631250619;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:3:\"svg\";i:2;s:0:\"\";i:24;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(604,2870,'_wp_page_template','page-templates/template-page-builder.php'),(605,2870,'_elementor_edit_mode','builder'),(606,2870,'_elementor_template_type','wp-page'),(607,2870,'_elementor_version','3.4.3'),(608,2870,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\"},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(609,2870,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(610,2871,'_wp_page_template','page-templates/template-page-builder.php'),(611,2871,'_elementor_edit_mode','builder'),(612,2871,'_elementor_template_type','wp-page'),(613,2871,'_elementor_version','3.4.3'),(614,2871,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\"},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\"},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(615,2871,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(677,2881,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(616,2872,'_wp_page_template','page-templates/template-page-builder.php'),(617,2872,'_elementor_edit_mode','builder'),(618,2872,'_elementor_template_type','wp-page'),(619,2872,'_elementor_version','3.4.3'),(620,2872,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(621,2872,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(623,2873,'_wp_page_template','page-templates/template-page-builder.php'),(624,2873,'_elementor_edit_mode','builder'),(625,2873,'_elementor_template_type','wp-page'),(626,2873,'_elementor_version','3.4.3'),(627,2873,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(628,2873,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(629,2874,'_wp_page_template','page-templates/template-page-builder.php'),(630,2874,'_elementor_edit_mode','builder'),(631,2874,'_elementor_template_type','wp-page'),(632,2874,'_elementor_version','3.4.3'),(633,2874,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFFE8\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF85\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFFBA\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(634,2874,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(635,2875,'_wp_page_template','page-templates/template-page-builder.php'),(636,2875,'_elementor_edit_mode','builder'),(637,2875,'_elementor_template_type','wp-page'),(638,2875,'_elementor_version','3.4.3'),(639,2875,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(640,2875,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(642,2876,'_wp_page_template','page-templates/template-page-builder.php'),(643,2876,'_elementor_edit_mode','builder'),(644,2876,'_elementor_template_type','wp-page'),(645,2876,'_elementor_version','3.4.3'),(646,2876,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(647,2876,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(648,2877,'_wp_page_template','page-templates/template-page-builder.php'),(649,2877,'_elementor_edit_mode','builder'),(650,2877,'_elementor_template_type','wp-page'),(651,2877,'_elementor_version','3.4.3'),(652,2877,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(653,2877,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(673,2881,'_wp_page_template','page-templates/template-page-builder.php'),(674,2881,'_elementor_edit_mode','builder'),(675,2881,'_elementor_template_type','wp-page'),(676,2881,'_elementor_version','3.4.3'),(654,2878,'_wp_page_template','page-templates/template-page-builder.php'),(655,2878,'_elementor_edit_mode','builder'),(656,2878,'_elementor_template_type','wp-page'),(657,2878,'_elementor_version','3.4.3'),(658,2878,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(659,2878,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(661,2879,'_wp_page_template','page-templates/template-page-builder.php'),(662,2879,'_elementor_edit_mode','builder'),(663,2879,'_elementor_template_type','wp-page'),(664,2879,'_elementor_version','3.4.3'),(665,2879,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(666,2879,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(667,2880,'_wp_page_template','page-templates/template-page-builder.php'),(668,2880,'_elementor_edit_mode','builder'),(669,2880,'_elementor_template_type','wp-page'),(670,2880,'_elementor_version','3.4.3'),(671,2880,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"d17c5a4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service-1.svg\",\"id\":2839},\"library\":\"svg\"},\"title\":\"Organize your campaigns\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"ba72a44\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Manage customers\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"ae88fa4\",\"elType\":\"widget\",\"settings\":{\"icon\":{\"value\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-service3.svg\",\"id\":2837},\"library\":\"svg\"},\"title\":\"Track progress fast\",\"description\":\"With lots of unique blocks, you can easily build a page without coding. Build your next landing page.\",\"icon_background\":\"#FFFFFF00\",\"icon_shadow_box_shadow_type\":\"\",\"icon_hover_shadow_box_shadow_type\":\"\",\"icon_box_size\":{\"unit\":\"px\",\"size\":37,\"sizes\":[]},\"space_between_icon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"__globals__\":{\"heading_typography_typography\":\"\",\"description_typography_typography\":\"\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_box_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_box_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"space_between_icon_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Circular Std\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7050000000000000710542735760100185871124267578125,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"space_between_icon_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text\":\"Learn more\"},\"elements\":[],\"widgetType\":\"shadepro-inline-icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(672,2880,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(678,2881,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(681,2882,'_wp_page_template','page-templates/template-page-builder.php'),(682,2882,'_elementor_edit_mode','builder'),(683,2882,'_elementor_template_type','wp-page'),(684,2882,'_elementor_version','3.4.3'),(685,2882,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(686,2882,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(687,2882,'_elementor_css','a:6:{s:4:\"time\";i:1631251178;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:6;s:0:\"\";i:24;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(688,2883,'_wp_page_template','page-templates/template-page-builder.php'),(689,2883,'_elementor_edit_mode','builder'),(690,2883,'_elementor_template_type','wp-page'),(691,2883,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (692,2883,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(693,2883,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(694,2883,'_elementor_css','a:6:{s:4:\"time\";i:1631251178;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:6;s:0:\"\";i:24;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(695,2884,'_wp_page_template','page-templates/template-page-builder.php'),(696,2884,'_elementor_edit_mode','builder'),(697,2884,'_elementor_template_type','wp-page'),(698,2884,'_elementor_version','3.4.3'),(699,2884,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(700,2884,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(701,2884,'_elementor_css','a:6:{s:4:\"time\";i:1631251178;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:6;s:0:\"\";i:24;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(889,2902,'_wp_page_template','page-templates/template-page-builder.php'),(890,2902,'_elementor_edit_mode','builder'),(891,2902,'_elementor_template_type','wp-page'),(892,2902,'_elementor_version','3.4.3'),(893,2902,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(704,2885,'_menu_item_type','post_type'),(705,2885,'_menu_item_menu_item_parent','0'),(706,2885,'_menu_item_object_id','2808'),(707,2885,'_menu_item_object','page'),(708,2885,'_menu_item_target',''),(709,2885,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(710,2885,'_menu_item_xfn',''),(711,2885,'_menu_item_url',''),(762,2886,'hide_this_menu','0'),(713,2886,'_menu_item_type','post_type'),(714,2886,'_menu_item_menu_item_parent','0'),(715,2886,'_menu_item_object_id','10'),(716,2886,'_menu_item_object','page'),(717,2886,'_menu_item_target',''),(718,2886,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(719,2886,'_menu_item_xfn',''),(720,2886,'_menu_item_url',''),(761,2885,'_is_it_title','field_5fe43201'),(722,2887,'_menu_item_type','post_type'),(723,2887,'_menu_item_menu_item_parent','0'),(724,2887,'_menu_item_object_id','11'),(725,2887,'_menu_item_object','page'),(726,2887,'_menu_item_target',''),(727,2887,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(728,2887,'_menu_item_xfn',''),(729,2887,'_menu_item_url',''),(760,2885,'is_it_title','0'),(731,2888,'_menu_item_type','post_type'),(732,2888,'_menu_item_menu_item_parent','0'),(733,2888,'_menu_item_object_id','12'),(734,2888,'_menu_item_object','page'),(735,2888,'_menu_item_target',''),(736,2888,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(737,2888,'_menu_item_xfn',''),(738,2888,'_menu_item_url',''),(740,2889,'_menu_item_type','post_type'),(741,2889,'_menu_item_menu_item_parent','0'),(742,2889,'_menu_item_object_id','2'),(743,2889,'_menu_item_object','page'),(744,2889,'_menu_item_target',''),(745,2889,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(746,2889,'_menu_item_xfn',''),(747,2889,'_menu_item_url',''),(759,2885,'_hide_this_menu','field_5fe43201d9712'),(749,2890,'_menu_item_type','post_type'),(750,2890,'_menu_item_menu_item_parent','0'),(751,2890,'_menu_item_object_id','9'),(752,2890,'_menu_item_object','page'),(753,2890,'_menu_item_target',''),(754,2890,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(755,2890,'_menu_item_xfn',''),(756,2890,'_menu_item_url',''),(758,2885,'hide_this_menu','0'),(763,2886,'_hide_this_menu','field_5fe43201d9712'),(764,2886,'is_it_title','0'),(765,2886,'_is_it_title','field_5fe43201'),(766,2887,'hide_this_menu','0'),(767,2887,'_hide_this_menu','field_5fe43201d9712'),(768,2887,'is_it_title','0'),(769,2887,'_is_it_title','field_5fe43201'),(770,2888,'hide_this_menu','0'),(771,2888,'_hide_this_menu','field_5fe43201d9712'),(772,2888,'is_it_title','0'),(773,2888,'_is_it_title','field_5fe43201'),(774,2889,'hide_this_menu','0'),(775,2889,'_hide_this_menu','field_5fe43201d9712'),(776,2889,'is_it_title','0'),(777,2889,'_is_it_title','field_5fe43201'),(778,2890,'hide_this_menu','0'),(779,2890,'_hide_this_menu','field_5fe43201d9712'),(780,2890,'is_it_title','0'),(781,2890,'_is_it_title','field_5fe43201'),(782,2891,'_menu_item_type','custom'),(783,2891,'_menu_item_menu_item_parent','0'),(784,2891,'_menu_item_object_id','2891'),(785,2891,'_menu_item_object','custom'),(786,2891,'_menu_item_target',''),(787,2891,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(788,2891,'_menu_item_xfn',''),(789,2891,'_menu_item_url','#'),(791,2892,'_menu_item_type','custom'),(792,2892,'_menu_item_menu_item_parent','0'),(793,2892,'_menu_item_object_id','2892'),(794,2892,'_menu_item_object','custom'),(795,2892,'_menu_item_target',''),(796,2892,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(797,2892,'_menu_item_xfn',''),(798,2892,'_menu_item_url','https://candc117.dev34.info/about-us/'),(800,2893,'_menu_item_type','custom'),(801,2893,'_menu_item_menu_item_parent','0'),(802,2893,'_menu_item_object_id','2893'),(803,2893,'_menu_item_object','custom'),(804,2893,'_menu_item_target',''),(805,2893,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(806,2893,'_menu_item_xfn',''),(807,2893,'_menu_item_url','https://candc117.dev34.info/our-services'),(809,2894,'_menu_item_type','custom'),(810,2894,'_menu_item_menu_item_parent','0'),(811,2894,'_menu_item_object_id','2894'),(812,2894,'_menu_item_object','custom'),(813,2894,'_menu_item_target',''),(814,2894,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(815,2894,'_menu_item_xfn',''),(816,2894,'_menu_item_url','https://candc117.dev34.info/contact-us/'),(2748,3151,'_elementor_controls_usage','a:8:{s:19:\"shadepro-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_tiem_style\";a:4:{s:33:\"breadcroumb_typography_typography\";i:1;s:32:\"breadcroumb_typography_font_size\";i:1;s:17:\"breadcroumb_color\";i:1;s:22:\"breadcroumb_link_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:2;}s:13:\"section_style\";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:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:25:\"section_advanced_gradient\";a:1:{s:24:\"shadepro_enable_gradient\";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:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i: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:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s: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:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";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:9:\"icon-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:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";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:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}}'),(827,2891,'hide_this_menu','0'),(828,2891,'_hide_this_menu','field_5fe43201d9712'),(829,2891,'is_it_title','0'),(830,2891,'_is_it_title','field_5fe43201'),(831,2893,'hide_this_menu','0'),(832,2893,'_hide_this_menu','field_5fe43201d9712'),(833,2893,'is_it_title','0'),(834,2893,'_is_it_title','field_5fe43201'),(839,2892,'hide_this_menu','0'),(840,2892,'_hide_this_menu','field_5fe43201d9712'),(841,2892,'is_it_title','0'),(842,2892,'_is_it_title','field_5fe43201'),(843,2894,'hide_this_menu','0'),(844,2894,'_hide_this_menu','field_5fe43201d9712'),(845,2894,'is_it_title','0'),(846,2894,'_is_it_title','field_5fe43201'),(852,2896,'_elementor_page_assets','a:0:{}'),(853,2896,'_elementor_css','a:6:{s:4:\"time\";i:1631203568;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(854,2897,'_wp_page_template','default'),(855,2897,'_elementor_edit_mode','builder'),(856,2897,'_elementor_template_type','wp-post'),(857,2897,'_elementor_version','3.4.3'),(858,2897,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#E6C603\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\"},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee66caf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false}]'),(859,2897,'_elementor_page_assets','a:0:{}'),(860,2897,'_elementor_css','a:6:{s:4:\"time\";i:1631203568;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(861,2898,'_wp_page_template','default'),(862,2898,'_elementor_edit_mode','builder'),(863,2898,'_elementor_template_type','wp-post'),(864,2898,'_elementor_version','3.4.3'),(865,2898,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(866,2898,'_elementor_page_assets','a:0:{}'),(867,2898,'_elementor_css','a:6:{s:4:\"time\";i:1631203568;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(869,2899,'_wp_page_template','default'),(870,2899,'_elementor_edit_mode','builder'),(871,2899,'_elementor_template_type','wp-post'),(872,2899,'_elementor_version','3.4.3'),(873,2899,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(874,2899,'_elementor_page_assets','a:0:{}'),(875,2900,'_wp_page_template','default'),(876,2900,'_elementor_edit_mode','builder'),(877,2900,'_elementor_template_type','wp-post'),(878,2900,'_elementor_version','3.4.3'),(879,2900,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#171616\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(880,2900,'_elementor_page_assets','a:0:{}'),(881,2901,'_wp_page_template','default'),(882,2901,'_elementor_edit_mode','builder'),(883,2901,'_elementor_template_type','wp-post'),(884,2901,'_elementor_version','3.4.3'),(885,2901,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(886,2901,'_elementor_page_assets','a:0:{}'),(2131,3108,'_wp_page_template','default'),(2132,3108,'_elementor_edit_mode','builder'),(2133,3108,'_elementor_template_type','wp-post'),(2134,3108,'_elementor_version','3.4.3'),(2135,3108,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(894,2902,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(895,2902,'_elementor_css','a:6:{s:4:\"time\";i:1631251258;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(896,2903,'_wp_page_template','page-templates/template-page-builder.php'),(897,2903,'_elementor_edit_mode','builder'),(898,2903,'_elementor_template_type','wp-page'),(899,2903,'_elementor_version','3.4.3'),(900,2903,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(901,2903,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(902,2903,'_elementor_css','a:6:{s:4:\"time\";i:1631251258;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(950,2911,'_elementor_version','3.4.3'),(951,2911,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(903,2904,'_wp_page_template','page-templates/template-page-builder.php'),(904,2904,'_elementor_edit_mode','builder'),(905,2904,'_elementor_template_type','wp-page'),(906,2904,'_elementor_version','3.4.3'),(907,2904,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(908,2904,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(909,2904,'_elementor_css','a:6:{s:4:\"time\";i:1631251258;s:5:\"fonts\";a:1:{i:0;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(911,2905,'_wp_page_template','page-templates/template-page-builder.php'),(912,2905,'_elementor_edit_mode','builder'),(913,2905,'_elementor_template_type','wp-page'),(914,2905,'_elementor_version','3.4.3'),(915,2905,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(916,2905,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(917,2906,'_wp_page_template','page-templates/template-page-builder.php'),(918,2906,'_elementor_edit_mode','builder'),(919,2906,'_elementor_template_type','wp-page'),(920,2906,'_elementor_version','3.4.3'),(921,2906,'_elementor_data','[{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(922,2906,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(947,2911,'_wp_page_template','page-templates/template-page-builder.php'),(948,2911,'_elementor_edit_mode','builder'),(949,2911,'_elementor_template_type','wp-page'),(923,2907,'_wp_page_template','page-templates/template-page-builder.php'),(924,2907,'_elementor_edit_mode','builder'),(925,2907,'_elementor_template_type','wp-page'),(926,2907,'_elementor_version','3.4.3'),(927,2907,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(928,2907,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(933,2909,'_wp_page_template','page-templates/template-page-builder.php'),(934,2909,'_elementor_edit_mode','builder'),(935,2909,'_elementor_template_type','wp-page'),(936,2909,'_elementor_version','3.4.3'),(937,2909,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(938,2909,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(939,2909,'_elementor_css','a:6:{s:4:\"time\";i:1631290736;s:5:\"fonts\";a:2:{i:0;s:12:\"Circular Std\";i:3;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(940,2910,'_wp_page_template','page-templates/template-page-builder.php'),(941,2910,'_elementor_edit_mode','builder'),(942,2910,'_elementor_template_type','wp-page'),(943,2910,'_elementor_version','3.4.3'),(944,2910,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e788d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"439b34b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cdd6438\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"117\",\"right\":\"0\",\"bottom\":\"170\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2ba1186\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.2109999999999985220711096189916133880615234375,\"_inline_size_tablet\":55,\"animation\":\"fadeInLeft\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"fce365d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get more visitors, get more sales.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFF\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a768165\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.<\\/p>\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"text_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73ed3ad\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#68D585\",\"inline_btn_color\":\"#68D585\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\"},\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":true},{\"id\":\"3a5083b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.7890000000000014779288903810083866119384765625,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"54\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_mobile\":\"none\"},\"elements\":[{\"id\":\"bf58179\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-2.png\",\"id\":2820},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":367,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-36.03099999999999880628820392303168773651123046875,\"unit\":\"px\"},\"_offset_y\":{\"size\":-32,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-4.0160000000000000142108547152020037174224853515625,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-33,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":138},\"_offset_x_end_tablet\":{\"size\":-33.73400000000000176214598468504846096038818359375,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":44,\"unit\":\"px\"},\"_z_index\":0},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c50dc1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(945,2910,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(946,2910,'_elementor_css','a:6:{s:4:\"time\";i:1631290736;s:5:\"fonts\";a:2:{i:0;s:12:\"Circular Std\";i:3;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(952,2911,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(953,2911,'_elementor_css','a:6:{s:4:\"time\";i:1631290736;s:5:\"fonts\";a:2:{i:0;s:12:\"Circular Std\";i:3;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:25;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(962,2913,'_wp_page_template','page-templates/template-page-builder.php'),(963,2913,'_elementor_edit_mode','builder'),(964,2913,'_elementor_template_type','wp-page'),(965,2913,'_elementor_version','3.4.3'),(966,2913,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(974,2915,'_wp_page_template','page-templates/template-page-builder.php'),(975,2915,'_elementor_edit_mode','builder'),(976,2915,'_elementor_template_type','wp-page'),(977,2915,'_elementor_version','3.4.3'),(978,2915,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(967,2913,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(968,2914,'_wp_page_template','page-templates/template-page-builder.php'),(969,2914,'_elementor_edit_mode','builder'),(970,2914,'_elementor_template_type','wp-page'),(971,2914,'_elementor_version','3.4.3'),(972,2914,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"113\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(973,2914,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(979,2915,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(998,2921,'_wp_page_template','page-templates/template-page-builder.php'),(999,2921,'_elementor_edit_mode','builder'),(1000,2921,'_elementor_template_type','wp-page'),(1001,2921,'_elementor_version','3.4.3'),(1002,2921,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(990,2917,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png'),(991,2917,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:490;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.20.53-AM-300x245.png\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.20.53-AM-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-09-09-at-9.20.53-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-09-at-9.20.53-AM-492x402.png\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.20.53-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.20.53-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.20.53-AM-492x402.png\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.20.53-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1010,2923,'_wp_page_template','page-templates/template-page-builder.php'),(1011,2923,'_elementor_edit_mode','builder'),(1012,2923,'_elementor_template_type','wp-page'),(1013,2923,'_elementor_version','3.4.3'),(1014,2923,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(992,2918,'_wp_attached_file','2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png'),(993,2918,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:490;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.37.39-PM-300x245.png\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.37.39-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-09-10-at-1.37.39-PM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-10-at-1.37.39-PM-492x402.png\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.37.39-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.37.39-PM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.37.39-PM-492x402.png\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.37.39-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(994,2919,'_wp_attached_file','2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png'),(995,2919,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:490;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.27.40-PM-300x245.png\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.27.40-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-09-10-at-1.27.40-PM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-10-at-1.27.40-PM-492x402.png\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.27.40-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.27.40-PM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.27.40-PM-492x402.png\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-10-at-1.27.40-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(996,2920,'_wp_attached_file','2021/09/lifted-tahoe-1.jpeg'),(997,2920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:490;s:4:\"file\";s:27:\"2021/09/lifted-tahoe-1.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"lifted-tahoe-1-300x245.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"lifted-tahoe-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"lifted-tahoe-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"lifted-tahoe-1-492x402.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"lifted-tahoe-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"lifted-tahoe-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"lifted-tahoe-1-492x402.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"lifted-tahoe-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1003,2921,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1004,2922,'_wp_page_template','page-templates/template-page-builder.php'),(1005,2922,'_elementor_edit_mode','builder'),(1006,2922,'_elementor_template_type','wp-page'),(1007,2922,'_elementor_version','3.4.3'),(1008,2922,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing The Following Manufacturers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1009,2922,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1015,2923,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1017,2924,'_wp_page_template','page-templates/template-page-builder.php'),(1018,2924,'_elementor_edit_mode','builder'),(1019,2924,'_elementor_template_type','wp-page'),(1020,2924,'_elementor_version','3.4.3'),(1021,2924,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1022,2924,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1023,2925,'_wp_page_template','page-templates/template-page-builder.php'),(1024,2925,'_elementor_edit_mode','builder'),(1025,2925,'_elementor_template_type','wp-page'),(1026,2925,'_elementor_version','3.4.3'),(1027,2925,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1028,2925,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1029,2926,'_wp_page_template','page-templates/template-page-builder.php'),(1030,2926,'_elementor_edit_mode','builder'),(1031,2926,'_elementor_template_type','wp-page'),(1032,2926,'_elementor_version','3.4.3'),(1033,2926,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1034,2926,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1036,2927,'_wp_page_template','page-templates/template-page-builder.php'),(1037,2927,'_elementor_edit_mode','builder'),(1038,2927,'_elementor_template_type','wp-page'),(1039,2927,'_elementor_version','3.4.3'),(1040,2927,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1041,2927,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1042,2928,'_wp_page_template','page-templates/template-page-builder.php'),(1043,2928,'_elementor_edit_mode','builder'),(1044,2928,'_elementor_template_type','wp-page'),(1045,2928,'_elementor_version','3.4.3'),(1046,2928,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1047,2928,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1048,2929,'_wp_page_template','page-templates/template-page-builder.php'),(1049,2929,'_elementor_edit_mode','builder'),(1050,2929,'_elementor_template_type','wp-page'),(1051,2929,'_elementor_version','3.4.3'),(1052,2929,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1053,2929,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1055,2930,'_wp_page_template','page-templates/template-page-builder.php'),(1056,2930,'_elementor_edit_mode','builder'),(1057,2930,'_elementor_template_type','wp-page'),(1058,2930,'_elementor_version','3.4.3'),(1059,2930,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1060,2930,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1061,2931,'_wp_page_template','page-templates/template-page-builder.php'),(1062,2931,'_elementor_edit_mode','builder'),(1063,2931,'_elementor_template_type','wp-page'),(1064,2931,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (1065,2931,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1066,2931,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1067,2932,'_wp_page_template','page-templates/template-page-builder.php'),(1068,2932,'_elementor_edit_mode','builder'),(1069,2932,'_elementor_template_type','wp-page'),(1070,2932,'_elementor_version','3.4.3'),(1071,2932,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1072,2932,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1074,2933,'_wp_page_template','page-templates/template-page-builder.php'),(1075,2933,'_elementor_edit_mode','builder'),(1076,2933,'_elementor_template_type','wp-page'),(1077,2933,'_elementor_version','3.4.3'),(1078,2933,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1079,2933,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1080,2934,'_wp_page_template','page-templates/template-page-builder.php'),(1081,2934,'_elementor_edit_mode','builder'),(1082,2934,'_elementor_template_type','wp-page'),(1083,2934,'_elementor_version','3.4.3'),(1084,2934,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1085,2934,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1086,2935,'_wp_page_template','page-templates/template-page-builder.php'),(1087,2935,'_elementor_edit_mode','builder'),(1088,2935,'_elementor_template_type','wp-page'),(1089,2935,'_elementor_version','3.4.3'),(1090,2935,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1091,2935,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1093,2936,'_wp_page_template','page-templates/template-page-builder.php'),(1094,2936,'_elementor_edit_mode','builder'),(1095,2936,'_elementor_template_type','wp-page'),(1096,2936,'_elementor_version','3.4.3'),(1097,2936,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1098,2936,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1099,2937,'_wp_page_template','page-templates/template-page-builder.php'),(1100,2937,'_elementor_edit_mode','builder'),(1101,2937,'_elementor_template_type','wp-page'),(1102,2937,'_elementor_version','3.4.3'),(1103,2937,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1104,2937,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1105,2938,'_wp_page_template','page-templates/template-page-builder.php'),(1106,2938,'_elementor_edit_mode','builder'),(1107,2938,'_elementor_template_type','wp-page'),(1108,2938,'_elementor_version','3.4.3'),(1109,2938,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1110,2938,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1112,2939,'_wp_page_template','page-templates/template-page-builder.php'),(1113,2939,'_elementor_edit_mode','builder'),(1114,2939,'_elementor_template_type','wp-page'),(1115,2939,'_elementor_version','3.4.3'),(1116,2939,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1117,2939,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1118,2940,'_wp_page_template','page-templates/template-page-builder.php'),(1119,2940,'_elementor_edit_mode','builder'),(1120,2940,'_elementor_template_type','wp-page'),(1121,2940,'_elementor_version','3.4.3'),(1122,2940,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1123,2940,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1124,2941,'_wp_page_template','page-templates/template-page-builder.php'),(1125,2941,'_elementor_edit_mode','builder'),(1126,2941,'_elementor_template_type','wp-page'),(1127,2941,'_elementor_version','3.4.3'),(1128,2941,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1129,2941,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1131,2942,'_wp_page_template','page-templates/template-page-builder.php'),(1132,2942,'_elementor_edit_mode','builder'),(1133,2942,'_elementor_template_type','wp-page'),(1134,2942,'_elementor_version','3.4.3'),(1135,2942,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1136,2942,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1137,2943,'_wp_page_template','page-templates/template-page-builder.php'),(1138,2943,'_elementor_edit_mode','builder'),(1139,2943,'_elementor_template_type','wp-page'),(1140,2943,'_elementor_version','3.4.3'),(1141,2943,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1142,2943,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1143,2944,'_wp_page_template','page-templates/template-page-builder.php'),(1144,2944,'_elementor_edit_mode','builder'),(1145,2944,'_elementor_template_type','wp-page'),(1146,2944,'_elementor_version','3.4.3'),(1147,2944,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1148,2944,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1150,2945,'_wp_page_template','page-templates/template-page-builder.php'),(1151,2945,'_elementor_edit_mode','builder'),(1152,2945,'_elementor_template_type','wp-page'),(1153,2945,'_elementor_version','3.4.3'),(1154,2945,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1155,2945,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1156,2946,'_wp_page_template','page-templates/template-page-builder.php'),(1157,2946,'_elementor_edit_mode','builder'),(1158,2946,'_elementor_template_type','wp-page'),(1159,2946,'_elementor_version','3.4.3'),(1160,2946,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1161,2946,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1162,2947,'_wp_page_template','page-templates/template-page-builder.php'),(1163,2947,'_elementor_edit_mode','builder'),(1164,2947,'_elementor_template_type','wp-page'),(1165,2947,'_elementor_version','3.4.3'),(1166,2947,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1167,2947,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1169,2948,'_wp_page_template','page-templates/template-page-builder.php'),(1170,2948,'_elementor_edit_mode','builder'),(1171,2948,'_elementor_template_type','wp-page'),(1172,2948,'_elementor_version','3.4.3'),(1173,2948,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1174,2948,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1175,2949,'_wp_page_template','page-templates/template-page-builder.php'),(1176,2949,'_elementor_edit_mode','builder'),(1177,2949,'_elementor_template_type','wp-page'),(1178,2949,'_elementor_version','3.4.3'),(1179,2949,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1180,2949,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1181,2950,'_wp_page_template','page-templates/template-page-builder.php'),(1182,2950,'_elementor_edit_mode','builder'),(1183,2950,'_elementor_template_type','wp-page'),(1184,2950,'_elementor_version','3.4.3'),(1185,2950,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1186,2950,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1188,2951,'_wp_page_template','page-templates/template-page-builder.php'),(1189,2951,'_elementor_edit_mode','builder'),(1190,2951,'_elementor_template_type','wp-page'),(1191,2951,'_elementor_version','3.4.3'),(1192,2951,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1193,2951,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1194,2952,'_wp_page_template','page-templates/template-page-builder.php'),(1195,2952,'_elementor_edit_mode','builder'),(1196,2952,'_elementor_template_type','wp-page'),(1197,2952,'_elementor_version','3.4.3'),(1198,2952,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Understand your visitors fast. Take quick actions.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1199,2952,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1839,3061,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1200,2953,'_wp_page_template','page-templates/template-page-builder.php'),(1201,2953,'_elementor_edit_mode','builder'),(1202,2953,'_elementor_template_type','wp-page'),(1203,2953,'_elementor_version','3.4.3'),(1204,2953,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44d12b5\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1cf06a3\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1205,2953,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1214,2957,'_wp_page_template','page-templates/template-page-builder.php'),(1215,2957,'_elementor_edit_mode','builder'),(1216,2957,'_elementor_template_type','wp-page'),(1217,2957,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (1218,2957,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44d12b5\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1cf06a3\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1208,2954,'_wp_attached_file','2021/09/truck-suspension-1-.jpeg'),(1209,2954,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:575;s:4:\"file\";s:32:\"2021/09/truck-suspension-1-.jpeg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--300x168.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--768x431.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"truck-suspension-1--255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--492x276.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--492x276.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"truck-suspension-1--100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1210,2955,'_wp_attached_file','2021/09/jeep-lighting.jpeg'),(1211,2955,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1125;s:4:\"file\";s:26:\"2021/09/jeep-lighting.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"jeep-lighting-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:27:\"jeep-lighting-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:26:\"jeep-lighting-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:\"jeep-lighting-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:27:\"jeep-lighting-1536x864.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"jeep-lighting-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"jeep-lighting-492x277.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"jeep-lighting-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"jeep-lighting-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"jeep-lighting-492x277.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"jeep-lighting-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1212,2956,'_wp_attached_file','2021/09/Chevy-Silverado-1500-front-bumper.jpeg'),(1213,2956,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:46:\"2021/09/Chevy-Silverado-1500-front-bumper.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-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:47:\"Chevy-Silverado-1500-front-bumper-1024x682.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-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:46:\"Chevy-Silverado-1500-front-bumper-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Chevy-Silverado-1500-front-bumper-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-492x328.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-492x328.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Chevy-Silverado-1500-front-bumper-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1219,2957,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1220,2957,'_elementor_css','a:6:{s:4:\"time\";i:1631308061;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1221,2958,'_wp_page_template','page-templates/template-page-builder.php'),(1222,2958,'_elementor_edit_mode','builder'),(1223,2958,'_elementor_template_type','wp-page'),(1224,2958,'_elementor_version','3.4.3'),(1225,2958,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44d12b5\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1cf06a3\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1226,2958,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1227,2958,'_elementor_css','a:6:{s:4:\"time\";i:1631308061;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1310,2971,'_elementor_template_type','wp-page'),(1311,2971,'_elementor_version','3.4.3'),(1312,2971,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1228,2959,'_wp_page_template','page-templates/template-page-builder.php'),(1229,2959,'_elementor_edit_mode','builder'),(1230,2959,'_elementor_template_type','wp-page'),(1231,2959,'_elementor_version','3.4.3'),(1232,2959,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1233,2959,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1234,2959,'_elementor_css','a:6:{s:4:\"time\";i:1631308061;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1236,2960,'_wp_page_template','page-templates/template-page-builder.php'),(1237,2960,'_elementor_edit_mode','builder'),(1238,2960,'_elementor_template_type','wp-page'),(1239,2960,'_elementor_version','3.4.3'),(1240,2960,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1241,2960,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1242,2961,'_wp_page_template','page-templates/template-page-builder.php'),(1243,2961,'_elementor_edit_mode','builder'),(1244,2961,'_elementor_template_type','wp-page'),(1245,2961,'_elementor_version','3.4.3'),(1246,2961,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4ca88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1247,2961,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1308,2971,'_wp_page_template','page-templates/template-page-builder.php'),(1309,2971,'_elementor_edit_mode','builder'),(1288,2968,'_elementor_template_type','wp-page'),(1289,2968,'_elementor_version','3.4.3'),(1290,2968,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1248,2962,'_wp_page_template','page-templates/template-page-builder.php'),(1249,2962,'_elementor_edit_mode','builder'),(1250,2962,'_elementor_template_type','wp-page'),(1251,2962,'_elementor_version','3.4.3'),(1252,2962,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1253,2962,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1255,2963,'_wp_page_template','page-templates/template-page-builder.php'),(1256,2963,'_elementor_edit_mode','builder'),(1257,2963,'_elementor_template_type','wp-page'),(1258,2963,'_elementor_version','3.4.3'),(1259,2963,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1260,2963,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1261,2964,'_wp_page_template','page-templates/template-page-builder.php'),(1262,2964,'_elementor_edit_mode','builder'),(1263,2964,'_elementor_template_type','wp-page'),(1264,2964,'_elementor_version','3.4.3'),(1265,2964,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1266,2964,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1286,2968,'_wp_page_template','page-templates/template-page-builder.php'),(1287,2968,'_elementor_edit_mode','builder'),(1267,2965,'_wp_page_template','page-templates/template-page-builder.php'),(1268,2965,'_elementor_edit_mode','builder'),(1269,2965,'_elementor_template_type','wp-page'),(1270,2965,'_elementor_version','3.4.3'),(1271,2965,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1272,2965,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1274,2966,'_wp_page_template','page-templates/template-page-builder.php'),(1275,2966,'_elementor_edit_mode','builder'),(1276,2966,'_elementor_template_type','wp-page'),(1277,2966,'_elementor_version','3.4.3'),(1278,2966,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1279,2966,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1280,2967,'_wp_page_template','page-templates/template-page-builder.php'),(1281,2967,'_elementor_edit_mode','builder'),(1282,2967,'_elementor_template_type','wp-page'),(1283,2967,'_elementor_version','3.4.3'),(1284,2967,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8003e84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7610ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69a8e93\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f1cac5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a755d\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1285,2967,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1291,2968,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1294,2969,'_wp_page_template','page-templates/template-page-builder.php'),(1295,2969,'_elementor_edit_mode','builder'),(1296,2969,'_elementor_template_type','wp-page'),(1297,2969,'_elementor_version','3.4.3'),(1298,2969,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1299,2969,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1300,2969,'_elementor_css','a:6:{s:4:\"time\";i:1631309426;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1301,2970,'_wp_page_template','page-templates/template-page-builder.php'),(1302,2970,'_elementor_edit_mode','builder'),(1303,2970,'_elementor_template_type','wp-page'),(1304,2970,'_elementor_version','3.4.3'),(1305,2970,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf844c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"264d557\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.5439999999999969304553815163671970367431640625,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"2e20e50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"51c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"2.5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99aa062\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.22.02-AM.png\",\"id\":2862,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dfa6335\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2.5\",\"isLinked\":false}},\"elements\":[{\"id\":\"4311192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/wa-6.png\",\"id\":2854},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c1afc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/09\\/1_copy_3.png\",\"id\":2856},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2382a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.2939999999999969304553815163671970367431640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"86\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"344e411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your customers happy by giving services.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8be099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4201575\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Start a free trial\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#473BF0\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#473BF0\",\"button_url\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"inline_btn_color\":\"#473BF0\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1306,2970,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1307,2970,'_elementor_css','a:6:{s:4:\"time\";i:1631309426;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1313,2971,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1314,2971,'_elementor_css','a:6:{s:4:\"time\";i:1631309426;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1323,2973,'_wp_page_template','page-templates/template-page-builder.php'),(1324,2973,'_elementor_edit_mode','builder'),(1325,2973,'_elementor_template_type','wp-page'),(1326,2973,'_elementor_version','3.4.3'),(1327,2973,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1340,2975,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1335,2975,'_wp_page_template','page-templates/template-page-builder.php'),(1336,2975,'_elementor_edit_mode','builder'),(1337,2975,'_elementor_template_type','wp-page'),(1338,2975,'_elementor_version','3.4.3'),(1339,2975,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"_border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1328,2973,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1329,2974,'_wp_page_template','page-templates/template-page-builder.php'),(1330,2974,'_elementor_edit_mode','builder'),(1331,2974,'_elementor_template_type','wp-page'),(1332,2974,'_elementor_version','3.4.3'),(1333,2974,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#7A7A7A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1334,2974,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1342,2976,'_wp_page_template','page-templates/template-page-builder.php'),(1343,2976,'_elementor_edit_mode','builder'),(1344,2976,'_elementor_template_type','wp-page'),(1345,2976,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (1346,2976,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"_border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1347,2976,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1348,2977,'_wp_page_template','page-templates/template-page-builder.php'),(1349,2977,'_elementor_edit_mode','builder'),(1350,2977,'_elementor_template_type','wp-page'),(1351,2977,'_elementor_version','3.4.3'),(1352,2977,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"_border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\"},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1353,2977,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1354,2978,'_wp_page_template','page-templates/template-page-builder.php'),(1355,2978,'_elementor_edit_mode','builder'),(1356,2978,'_elementor_template_type','wp-page'),(1357,2978,'_elementor_version','3.4.3'),(1358,2978,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1359,2978,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1380,2986,'_wp_page_template','page-templates/template-page-builder.php'),(1381,2986,'_elementor_edit_mode','builder'),(1382,2986,'_elementor_template_type','wp-page'),(1383,2986,'_elementor_version','3.4.3'),(1384,2986,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1361,2979,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.22.17-AM.png'),(1362,2979,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:782;s:6:\"height\";i:588;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.22.17-AM.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.17-AM-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.17-AM-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-09-09-at-9.22.17-AM-768x577.png\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.17-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-09-at-9.22.17-AM-492x370.png\";s:5:\"width\";i:492;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.17-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.17-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.17-AM-492x370.png\";s:5:\"width\";i:492;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.22.17-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1363,2980,'_wp_attached_file','2021/09/Screen-Shot-2021-09-09-at-9.21.06-AM.png'),(1364,2980,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:462;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2021-09-09-at-9.21.06-AM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.21.06-AM-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.21.06-AM-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-09-09-at-9.21.06-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;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-09-09-at-9.21.06-AM-492x364.png\";s:5:\"width\";i:492;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.21.06-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.21.06-AM-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.21.06-AM-492x364.png\";s:5:\"width\";i:492;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-09-09-at-9.21.06-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1392,2988,'_wp_page_template','page-templates/template-page-builder.php'),(1393,2988,'_elementor_edit_mode','builder'),(1394,2988,'_elementor_template_type','wp-page'),(1395,2988,'_elementor_version','3.4.3'),(1396,2988,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577.jpg\",\"id\":2985,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-scaled.jpg\",\"id\":2984,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1372,2982,'_wp_attached_file','2021/09/20210113_135831-scaled.jpg'),(1373,2982,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2021/09/20210113_135831-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20210113_135831-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20210113_135831-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_135831-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:\"20210113_135831-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20210113_135831-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20210113_135831-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20210113_135831-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20210113_135831-492x369.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_135831-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20210113_135831-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20210113_135831-492x369.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_135831-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G973U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1610546312\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"1.8\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0062111801242236\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210113_135831.jpg\";}'),(1374,2983,'_wp_attached_file','2021/09/20210113_145529-scaled.jpg'),(1375,2983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2021/09/20210113_145529-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20210113_145529-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20210113_145529-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_145529-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:\"20210113_145529-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20210113_145529-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20210113_145529-492x656.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_145529-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20210113_145529-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20210113_145529-492x656.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_145529-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G973U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1610549729\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210113_145529.jpg\";}'),(1376,2984,'_wp_attached_file','2021/09/20210113_145529-1-scaled.jpg'),(1377,2984,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1852;s:4:\"file\";s:36:\"2021/09/20210113_145529-1-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20210113_145529-1-1024x741.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:741;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20210113_145529-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:29:\"20210113_145529-1-768x556.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:556;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1536x1111.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-2048x1482.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1482;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"20210113_145529-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1-492x356.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1-492x356.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"20210113_145529-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G973U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1610549729\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20210113_145529-1.jpg\";}'),(1378,2985,'_wp_attached_file','2021/09/IMG_20210118_214223_577.jpg'),(1379,2985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1080;s:4:\"file\";s:35:\"2021/09/IMG_20210118_214223_577.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"IMG_20210118_214223_577-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-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:35:\"IMG_20210118_214223_577-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-492x369.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-492x369.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20210118_214223_577-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1385,2986,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1386,2987,'_wp_page_template','page-templates/template-page-builder.php'),(1387,2987,'_elementor_edit_mode','builder'),(1388,2987,'_elementor_template_type','wp-page'),(1389,2987,'_elementor_version','3.4.3'),(1390,2987,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Chevy-Silverado-1500-front-bumper.jpeg\",\"id\":2956,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1391,2987,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1397,2988,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1410,2992,'_wp_page_template','page-templates/template-page-builder.php'),(1411,2992,'_elementor_edit_mode','builder'),(1412,2992,'_elementor_template_type','wp-page'),(1413,2992,'_elementor_version','3.4.3'),(1414,2992,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577.jpg\",\"id\":2985,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-scaled.jpg\",\"id\":2984,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1448,3001,'_elementor_template_type','wp-page'),(1449,3001,'_elementor_version','3.4.3'),(1450,3001,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577.jpg\",\"id\":2985,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-scaled.jpg\",\"id\":2984,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1427,2994,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1422,2994,'_wp_page_template','page-templates/template-page-builder.php'),(1423,2994,'_elementor_edit_mode','builder'),(1424,2994,'_elementor_template_type','wp-page'),(1425,2994,'_elementor_version','3.4.3'),(1426,2994,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577.jpg\",\"id\":2985,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-scaled.jpg\",\"id\":2984,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1406,2990,'_wp_attached_file','2021/09/20210113_145511-scaled.jpg'),(1407,2990,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2021/09/20210113_145511-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20210113_145511-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20210113_145511-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_145511-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:\"20210113_145511-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20210113_145511-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20210113_145511-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20210113_145511-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20210113_145511-492x656.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_145511-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20210113_145511-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20210113_145511-492x656.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20210113_145511-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G973U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1610549712\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.025641025641026\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20210113_145511.jpg\";}'),(1408,2991,'_wp_attached_file','2021/09/IMG_20201230_220709_461.jpg'),(1409,2991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:35:\"2021/09/IMG_20201230_220709_461.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"IMG_20201230_220709_461-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:35:\"IMG_20201230_220709_461-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"IMG_20201230_220709_461-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"IMG_20201230_220709_461-492x492.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20201230_220709_461-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"IMG_20201230_220709_461-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"IMG_20201230_220709_461-492x492.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20201230_220709_461-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1415,2992,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1416,2993,'_wp_page_template','page-templates/template-page-builder.php'),(1417,2993,'_elementor_edit_mode','builder'),(1418,2993,'_elementor_template_type','wp-page'),(1419,2993,'_elementor_version','3.4.3'),(1420,2993,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577.jpg\",\"id\":2985,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-scaled.jpg\",\"id\":2984,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1421,2993,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1446,3001,'_wp_page_template','page-templates/template-page-builder.php'),(1447,3001,'_elementor_edit_mode','builder'),(1429,2995,'_wp_attached_file','2021/09/IMG_20201230_220709_461-1.jpg'),(1430,2995,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:500;s:4:\"file\";s:37:\"2021/09/IMG_20201230_220709_461-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-492x342.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-492x342.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20201230_220709_461-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1477,3006,'_elementor_template_type','wp-page'),(1478,3006,'_elementor_version','3.4.3'),(1479,3006,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1463,3003,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1458,3003,'_wp_page_template','page-templates/template-page-builder.php'),(1459,3003,'_elementor_edit_mode','builder'),(1460,3003,'_elementor_template_type','wp-page'),(1461,3003,'_elementor_version','3.4.3'),(1462,3003,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1438,2997,'_wp_attached_file','2021/09/IMG_20210118_214223_577-1.jpg'),(1439,2997,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:518;s:4:\"file\";s:37:\"2021/09/IMG_20210118_214223_577-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-492x354.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-492x354.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20210118_214223_577-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1440,2998,'_wp_attached_file','2021/09/jeep-lighting-1.jpeg'),(1441,2998,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:740;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2021/09/jeep-lighting-1.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-1-300x203.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"jeep-lighting-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-1-492x332.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-1-492x332.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1442,2999,'_wp_attached_file','2021/09/jeep-lighting-2.jpeg'),(1443,2999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:920;s:6:\"height\";i:518;s:4:\"file\";s:28:\"2021/09/jeep-lighting-2.jpeg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-2-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:\"jeep-lighting-2-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:28:\"jeep-lighting-2-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"jeep-lighting-2-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-2-492x277.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-2-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-2-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-2-492x277.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"jeep-lighting-2-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1444,3000,'_wp_attached_file','2021/09/20210113_145529-1-1.jpg'),(1445,3000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:521;s:4:\"file\";s:31:\"2021/09/20210113_145529-1-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"20210113_145529-1-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1-492x356.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1-492x356.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"20210113_145529-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G973U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1610549729\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1451,3001,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1452,3002,'_wp_page_template','page-templates/template-page-builder.php'),(1453,3002,'_elementor_edit_mode','builder'),(1454,3002,'_elementor_template_type','wp-page'),(1455,3002,'_elementor_version','3.4.3'),(1456,3002,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577.jpg\",\"id\":2985,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting.jpeg\",\"id\":2955,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-scaled.jpg\",\"id\":2984,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1457,3002,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1475,3006,'_wp_page_template','page-templates/template-page-builder.php'),(1476,3006,'_elementor_edit_mode','builder'),(1501,3009,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1494,3008,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1495,3008,'_elementor_css','a:6:{s:4:\"time\";i:1631311623;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1472,3005,'_wp_attached_file','2021/09/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg'),(1489,3008,'_wp_page_template','page-templates/template-page-builder.php'),(1490,3008,'_elementor_edit_mode','builder'),(1491,3008,'_elementor_template_type','wp-page'),(1492,3008,'_elementor_version','3.4.3'),(1493,3008,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1473,3005,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:76:\"2021/09/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-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:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-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:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-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:71:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-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:71:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-492x328.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-492x328.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:69:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:9:\"Alexlukin\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:100:\"Quad bike with two sportsman rushes through the field in the dust. The concept of speed and freedom.\";s:17:\"created_timestamp\";s:10:\"1507376894\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:61:\"Quad bike with two sportsman rushes through field in the dust\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:9:\"landscape\";i:1;s:14:\"transportation\";i:2;s:7:\"freedom\";i:3;s:8:\"quadbike\";i:4;s:9:\"motorbike\";i:5;s:4:\"race\";i:6;s:5:\"buggy\";i:7;s:5:\"rally\";i:8;s:5:\"motor\";i:9;s:5:\"sport\";i:10;s:9:\"adventure\";i:11;s:7:\"extreme\";i:12;s:4:\"road\";i:13;s:5:\"speed\";i:14;s:4:\"quad\";i:15;s:8:\"off-road\";i:16;s:7:\"vehicle\";i:17;s:3:\"car\";i:18;s:7:\"outdoor\";i:19;s:5:\"drive\";i:20;s:4:\"dust\";i:21;s:6:\"action\";i:22;s:4:\"dirt\";i:23;s:3:\"4x4\";i:24;s:6:\"desert\";i:25;s:3:\"atv\";i:26;s:6:\"driver\";i:27;s:10:\"motorsport\";i:28;s:5:\"dirty\";i:29;s:4:\"ride\";i:30;s:7:\"tourism\";i:31;s:6:\"nature\";i:32;s:5:\"rider\";i:33;s:10:\"automobile\";i:34;s:7:\"offroad\";i:35;s:4:\"four\";i:36;s:5:\"power\";i:37;s:6:\"travel\";i:38;s:10:\"background\";i:39;s:6:\"danger\";i:40;s:10:\"motorcycle\";i:41;s:7:\"leisure\";i:42;s:9:\"motocross\";i:43;s:9:\"lifestyle\";i:44;s:6:\"buggie\";i:45;s:4:\"jeep\";i:46;s:5:\"field\";i:47;s:8:\"vacation\";i:48;s:9:\"buggy car\";}}s:14:\"original_image\";s:61:\"quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ.jpg\";}'),(1480,3006,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1481,3006,'_elementor_css','a:6:{s:4:\"time\";i:1631311623;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1482,3007,'_wp_page_template','page-templates/template-page-builder.php'),(1483,3007,'_elementor_edit_mode','builder'),(1484,3007,'_elementor_template_type','wp-page'),(1485,3007,'_elementor_version','3.4.3'),(1486,3007,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"id\":2841,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1487,3007,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1488,3007,'_elementor_css','a:6:{s:4:\"time\";i:1631311623;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1497,3009,'_wp_page_template','page-templates/template-page-builder.php'),(1498,3009,'_elementor_edit_mode','builder'),(1499,3009,'_elementor_template_type','wp-page'),(1500,3009,'_elementor_version','3.4.3'),(1502,3009,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1503,3010,'_wp_page_template','page-templates/template-page-builder.php'),(1504,3010,'_elementor_edit_mode','builder'),(1505,3010,'_elementor_template_type','wp-page'),(1506,3010,'_elementor_version','3.4.3'),(1507,3010,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1508,3010,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1509,3011,'_wp_page_template','page-templates/template-page-builder.php'),(1510,3011,'_elementor_edit_mode','builder'),(1511,3011,'_elementor_template_type','wp-page'),(1512,3011,'_elementor_version','3.4.3'),(1513,3011,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1514,3011,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1516,3012,'_wp_page_template','page-templates/template-page-builder.php'),(1517,3012,'_elementor_edit_mode','builder'),(1518,3012,'_elementor_template_type','wp-page'),(1519,3012,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (1520,3012,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1521,3012,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1522,3013,'_wp_page_template','page-templates/template-page-builder.php'),(1523,3013,'_elementor_edit_mode','builder'),(1524,3013,'_elementor_template_type','wp-page'),(1525,3013,'_elementor_version','3.4.3'),(1526,3013,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1527,3013,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1528,3014,'_wp_page_template','page-templates/template-page-builder.php'),(1529,3014,'_elementor_edit_mode','builder'),(1530,3014,'_elementor_template_type','wp-page'),(1531,3014,'_elementor_version','3.4.3'),(1532,3014,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1533,3014,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1535,3015,'_wp_page_template','page-templates/template-page-builder.php'),(1536,3015,'_elementor_edit_mode','builder'),(1537,3015,'_elementor_template_type','wp-page'),(1538,3015,'_elementor_version','3.4.3'),(1539,3015,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1540,3015,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1541,3016,'_wp_page_template','page-templates/template-page-builder.php'),(1542,3016,'_elementor_edit_mode','builder'),(1543,3016,'_elementor_template_type','wp-page'),(1544,3016,'_elementor_version','3.4.3'),(1545,3016,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1546,3016,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1547,3017,'_wp_page_template','page-templates/template-page-builder.php'),(1548,3017,'_elementor_edit_mode','builder'),(1549,3017,'_elementor_template_type','wp-page'),(1550,3017,'_elementor_version','3.4.3'),(1551,3017,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1552,3017,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1554,3018,'_wp_page_template','page-templates/template-page-builder.php'),(1555,3018,'_elementor_edit_mode','builder'),(1556,3018,'_elementor_template_type','wp-page'),(1557,3018,'_elementor_version','3.4.3'),(1558,3018,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1559,3018,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1560,3019,'_wp_page_template','page-templates/template-page-builder.php'),(1561,3019,'_elementor_edit_mode','builder'),(1562,3019,'_elementor_template_type','wp-page'),(1563,3019,'_elementor_version','3.4.3'),(1564,3019,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1565,3019,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1591,3023,'_elementor_version','3.4.3'),(1592,3023,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1588,3023,'_wp_page_template','page-templates/template-page-builder.php'),(1589,3023,'_elementor_edit_mode','builder'),(1590,3023,'_elementor_template_type','wp-page'),(1566,3020,'_wp_page_template','page-templates/template-page-builder.php'),(1567,3020,'_elementor_edit_mode','builder'),(1568,3020,'_elementor_template_type','wp-page'),(1569,3020,'_elementor_version','3.4.3'),(1570,3020,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9d9ed0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\"},\"elements\":[{\"id\":\"c498426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1571,3020,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1574,3021,'_wp_page_template','page-templates/template-page-builder.php'),(1575,3021,'_elementor_edit_mode','builder'),(1576,3021,'_elementor_template_type','wp-page'),(1577,3021,'_elementor_version','3.4.3'),(1578,3021,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9d9ed0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\"},\"elements\":[{\"id\":\"c498426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1579,3021,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1580,3021,'_elementor_css','a:6:{s:4:\"time\";i:1631312048;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:6;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1581,3022,'_wp_page_template','page-templates/template-page-builder.php'),(1582,3022,'_elementor_edit_mode','builder'),(1583,3022,'_elementor_template_type','wp-page'),(1584,3022,'_elementor_version','3.4.3'),(1585,3022,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9d9ed0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\"},\"elements\":[{\"id\":\"c498426\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1586,3022,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1587,3022,'_elementor_css','a:6:{s:4:\"time\";i:1631312048;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:6;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1593,3023,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1594,3023,'_elementor_css','a:6:{s:4:\"time\";i:1631312048;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:6;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1596,3024,'_wp_page_template','page-templates/template-page-builder.php'),(1597,3024,'_elementor_edit_mode','builder'),(1598,3024,'_elementor_template_type','wp-page'),(1599,3024,'_elementor_version','3.4.3'),(1600,3024,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1601,3024,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1602,3025,'_wp_page_template','page-templates/template-page-builder.php'),(1603,3025,'_elementor_edit_mode','builder'),(1604,3025,'_elementor_template_type','wp-page'),(1605,3025,'_elementor_version','3.4.3'),(1606,3025,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1607,3025,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1608,3026,'_wp_page_template','page-templates/template-page-builder.php'),(1609,3026,'_elementor_edit_mode','builder'),(1610,3026,'_elementor_template_type','wp-page'),(1611,3026,'_elementor_version','3.4.3'),(1612,3026,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1613,3026,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1618,3028,'_wp_page_template','page-templates/template-page-builder.php'),(1619,3028,'_elementor_edit_mode','builder'),(1620,3028,'_elementor_template_type','wp-page'),(1621,3028,'_elementor_version','3.4.3'),(1622,3028,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1616,3027,'_wp_attached_file','2021/09/C48CCAE8-1.jpg'),(1617,3027,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:22:\"2021/09/C48CCAE8-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"C48CCAE8-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-1-492x369.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-1-492x369.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1623,3028,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1624,3028,'_elementor_css','a:6:{s:4:\"time\";i:1631312120;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:6;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1625,3029,'_wp_page_template','page-templates/template-page-builder.php'),(1626,3029,'_elementor_edit_mode','builder'),(1627,3029,'_elementor_template_type','wp-page'),(1628,3029,'_elementor_version','3.4.3'),(1629,3029,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1630,3029,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1631,3029,'_elementor_css','a:6:{s:4:\"time\";i:1631312120;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:6;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1842,3062,'_wp_page_template','page-templates/template-page-builder.php'),(1843,3062,'_elementor_edit_mode','builder'),(1844,3062,'_elementor_template_type','wp-page'),(1845,3062,'_elementor_version','3.4.3'),(1846,3062,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(1632,3030,'_wp_page_template','page-templates/template-page-builder.php'),(1633,3030,'_elementor_edit_mode','builder'),(1634,3030,'_elementor_template_type','wp-page'),(1635,3030,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (1636,3030,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1637,3030,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1638,3030,'_elementor_css','a:6:{s:4:\"time\";i:1631312120;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:6;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1647,3032,'_wp_page_template','page-templates/template-page-builder.php'),(1648,3032,'_elementor_edit_mode','builder'),(1649,3032,'_elementor_template_type','wp-page'),(1650,3032,'_elementor_version','3.4.3'),(1651,3032,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1665,3034,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1666,3034,'_elementor_css','a:6:{s:4:\"time\";i:1631312777;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1660,3034,'_wp_page_template','page-templates/template-page-builder.php'),(1661,3034,'_elementor_edit_mode','builder'),(1662,3034,'_elementor_template_type','wp-page'),(1663,3034,'_elementor_version','3.4.3'),(1664,3034,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1652,3032,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1653,3033,'_wp_page_template','page-templates/template-page-builder.php'),(1654,3033,'_elementor_edit_mode','builder'),(1655,3033,'_elementor_template_type','wp-page'),(1656,3033,'_elementor_version','3.4.3'),(1657,3033,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1658,3033,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1669,3035,'_wp_page_template','page-templates/template-page-builder.php'),(1670,3035,'_elementor_edit_mode','builder'),(1671,3035,'_elementor_template_type','wp-page'),(1672,3035,'_elementor_version','3.4.3'),(1673,3035,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1674,3035,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1675,3035,'_elementor_css','a:6:{s:4:\"time\";i:1631312834;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1676,3036,'_wp_page_template','page-templates/template-page-builder.php'),(1677,3036,'_elementor_edit_mode','builder'),(1678,3036,'_elementor_template_type','wp-page'),(1679,3036,'_elementor_version','3.4.3'),(1680,3036,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1681,3036,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1682,3036,'_elementor_css','a:6:{s:4:\"time\";i:1631312834;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1683,3037,'_wp_page_template','page-templates/template-page-builder.php'),(1684,3037,'_elementor_edit_mode','builder'),(1685,3037,'_elementor_template_type','wp-page'),(1686,3037,'_elementor_version','3.4.3'),(1687,3037,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1688,3037,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1689,3037,'_elementor_css','a:6:{s:4:\"time\";i:1631312834;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:28;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1702,3040,'_wp_page_template','page-templates/template-page-builder.php'),(1703,3040,'_elementor_edit_mode','builder'),(1704,3040,'_elementor_template_type','wp-page'),(1705,3040,'_elementor_version','3.4.3'),(1706,3040,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1700,3039,'_wp_attached_file','2021/09/IMG_20200912_164715_198.jpg'),(1701,3039,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:35:\"2021/09/IMG_20200912_164715_198.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-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:35:\"IMG_20200912_164715_198-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-492x492.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-492x492.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20200912_164715_198-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1725,3044,'_elementor_template_type','wp-page'),(1726,3044,'_elementor_version','3.4.3'),(1727,3044,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198.jpg\",\"id\":3039,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1719,3042,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1715,3042,'_elementor_edit_mode','builder'),(1716,3042,'_elementor_template_type','wp-page'),(1717,3042,'_elementor_version','3.4.3'),(1718,3042,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198.jpg\",\"id\":3039,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1714,3042,'_wp_page_template','page-templates/template-page-builder.php'),(1707,3040,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1708,3041,'_wp_page_template','page-templates/template-page-builder.php'),(1709,3041,'_elementor_edit_mode','builder'),(1710,3041,'_elementor_template_type','wp-page'),(1711,3041,'_elementor_version','3.4.3'),(1712,3041,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/C48CCAE8-1.jpg\",\"id\":3027,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1713,3041,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1723,3044,'_wp_page_template','page-templates/template-page-builder.php'),(1724,3044,'_elementor_edit_mode','builder'),(1721,3043,'_wp_attached_file','2021/09/IMG_20200912_164715_198-1.jpg'),(1722,3043,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1404;s:6:\"height\";i:986;s:4:\"file\";s:37:\"2021/09/IMG_20200912_164715_198-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"IMG_20200912_164715_198-1-1024x719.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-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:37:\"IMG_20200912_164715_198-1-768x539.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1-492x346.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1-492x346.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"IMG_20200912_164715_198-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1728,3044,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1729,3045,'_wp_page_template','page-templates/template-page-builder.php'),(1730,3045,'_elementor_edit_mode','builder'),(1731,3045,'_elementor_template_type','wp-page'),(1732,3045,'_elementor_version','3.4.3'),(1733,3045,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198.jpg\",\"id\":3039,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1734,3045,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1735,3046,'_wp_page_template','page-templates/template-page-builder.php'),(1736,3046,'_elementor_edit_mode','builder'),(1737,3046,'_elementor_template_type','wp-page'),(1738,3046,'_elementor_version','3.4.3'),(1739,3046,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1740,3046,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1742,3047,'_wp_page_template','page-templates/template-page-builder.php'),(1743,3047,'_elementor_edit_mode','builder'),(1744,3047,'_elementor_template_type','wp-page'),(1745,3047,'_elementor_version','3.4.3'),(1746,3047,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1747,3047,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1748,3048,'_wp_page_template','page-templates/template-page-builder.php'),(1749,3048,'_elementor_edit_mode','builder'),(1750,3048,'_elementor_template_type','wp-page'),(1751,3048,'_elementor_version','3.4.3'),(1752,3048,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1753,3048,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1754,3049,'_wp_page_template','page-templates/template-page-builder.php'),(1755,3049,'_elementor_edit_mode','builder'),(1756,3049,'_elementor_template_type','wp-page'),(1757,3049,'_elementor_version','3.4.3'),(1758,3049,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1759,3049,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1761,3050,'_wp_page_template','page-templates/template-page-builder.php'),(1762,3050,'_elementor_edit_mode','builder'),(1763,3050,'_elementor_template_type','wp-page'),(1764,3050,'_elementor_version','3.4.3'),(1765,3050,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1766,3050,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1767,3051,'_wp_page_template','page-templates/template-page-builder.php'),(1768,3051,'_elementor_edit_mode','builder'),(1769,3051,'_elementor_template_type','wp-page'),(1770,3051,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (1771,3051,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1772,3051,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1773,3052,'_wp_page_template','page-templates/template-page-builder.php'),(1774,3052,'_elementor_edit_mode','builder'),(1775,3052,'_elementor_template_type','wp-page'),(1776,3052,'_elementor_version','3.4.3'),(1777,3052,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1778,3052,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1781,3053,'_wp_page_template','page-templates/template-page-builder.php'),(1782,3053,'_elementor_edit_mode','builder'),(1783,3053,'_elementor_template_type','wp-page'),(1784,3053,'_elementor_version','3.4.3'),(1785,3053,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1786,3053,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1787,3053,'_elementor_css','a:6:{s:4:\"time\";i:1631313300;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";i:29;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1788,3054,'_wp_page_template','page-templates/template-page-builder.php'),(1789,3054,'_elementor_edit_mode','builder'),(1790,3054,'_elementor_template_type','wp-page'),(1791,3054,'_elementor_version','3.4.3'),(1792,3054,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Trucks\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeeps\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV\'s\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1793,3054,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1794,3054,'_elementor_css','a:6:{s:4:\"time\";i:1631313300;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";i:29;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1795,3055,'_wp_page_template','page-templates/template-page-builder.php'),(1796,3055,'_elementor_edit_mode','builder'),(1797,3055,'_elementor_template_type','wp-page'),(1798,3055,'_elementor_version','3.4.3'),(1799,3055,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1800,3055,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1801,3055,'_elementor_css','a:6:{s:4:\"time\";i:1631313300;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";i:29;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1803,3056,'_wp_page_template','page-templates/template-page-builder.php'),(1804,3056,'_elementor_edit_mode','builder'),(1805,3056,'_elementor_template_type','wp-page'),(1806,3056,'_elementor_version','3.4.3'),(1807,3056,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1808,3056,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1809,3057,'_wp_page_template','page-templates/template-page-builder.php'),(1810,3057,'_elementor_edit_mode','builder'),(1811,3057,'_elementor_template_type','wp-page'),(1812,3057,'_elementor_version','3.4.3'),(1813,3057,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1814,3057,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1834,3061,'_wp_page_template','page-templates/template-page-builder.php'),(1835,3061,'_elementor_edit_mode','builder'),(1836,3061,'_elementor_template_type','wp-page'),(1837,3061,'_elementor_version','3.4.3'),(1838,3061,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(1815,3058,'_wp_page_template','page-templates/template-page-builder.php'),(1816,3058,'_elementor_edit_mode','builder'),(1817,3058,'_elementor_template_type','wp-page'),(1818,3058,'_elementor_version','3.4.3'),(1819,3058,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1820,3058,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1822,3059,'_wp_page_template','page-templates/template-page-builder.php'),(1823,3059,'_elementor_edit_mode','builder'),(1824,3059,'_elementor_template_type','wp-page'),(1825,3059,'_elementor_version','3.4.3'),(1826,3059,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1827,3059,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1828,3060,'_wp_page_template','page-templates/template-page-builder.php'),(1829,3060,'_elementor_edit_mode','builder'),(1830,3060,'_elementor_template_type','wp-page'),(1831,3060,'_elementor_version','3.4.3'),(1832,3060,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"411252d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#161C2D\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e642eaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379215fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43723e64\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"276b60b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pages\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78572479\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Shop\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/shop\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4b21fb98\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b4e3c82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b7fad3b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bed Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/bed-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dining Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/dining-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Kitchen\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/kitchen\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Living Room\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/living-room\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"},{\"text\":\"Office\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/product-category\\/office\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4a3b72e\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5717961b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b5112a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Article\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b43c2a1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cyber Security\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/cyber-security\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Gaming\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/gaming\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"},{\"text\":\"Marketing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/category\\/marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cd7f7b1\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6b72c1ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"500a889f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Legal\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4ca58d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/privacy-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Terms & Conditions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/terms-conditions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"},{\"text\":\"Return Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/return-policy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf99da\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\"},\"text_color_hover\":\"#68D585\",\"text_color\":\"#FFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7923e76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560f59fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"header_size\":\"p\",\"title_color\":\"#FFFFFFA6\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f59703d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"support@grayic.com \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7a104eb\",\"link\":{\"url\":\"mailto:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+133-394-3439-1435\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:+133-394-3439-1435\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eab5bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"text_color_hover\":\"#68D585\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cab3a7b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#292F41\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28af9f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"34123c3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2020 Copyright, All Right Reserved, Made by Grayic with <img class=\\\"alignnone size-full wp-image-316\\\" src=\\\"https:\\/\\/finestdevs.com\\/demos\\/wp\\/shadepro\\/wp-content\\/uploads\\/2020\\/08\\/heart-2.svg\\\" alt=\\\"\\\" \\/><\\/p>\",\"text_color\":\"rgba(255, 255, 255, 0.57)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d820796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"48afc6b2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"054a8bf\",\"link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook-square\",\"library\":\"fa-brands\"},\"_id\":\"c454e71\",\"link\":{\"url\":\"https:\\/\\/facebook.com\\/grayic\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"17d2f5a\",\"link\":{\"url\":\"https:\\/\\/instagram.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"https:\\/\\/linkedin.com\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d76dc46\"}],\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(146, 47, 47, 0)\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"hover_secondary_color\":\"#68D585\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_secondary_color\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1833,3060,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1847,3062,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1848,3062,'_elementor_css','a:6:{s:4:\"time\";i:1631338322;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1849,3063,'_wp_page_template','page-templates/template-page-builder.php'),(1850,3063,'_elementor_edit_mode','builder'),(1851,3063,'_elementor_template_type','wp-page'),(1852,3063,'_elementor_version','3.4.3'),(1853,3063,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#001B38\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Fleet of Offroad Vehicles\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(1854,3063,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1855,3063,'_elementor_css','a:6:{s:4:\"time\";i:1631338322;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1856,3064,'_wp_page_template','page-templates/template-page-builder.php'),(1857,3064,'_elementor_edit_mode','builder'),(1858,3064,'_elementor_template_type','wp-page'),(1859,3064,'_elementor_version','3.4.3'),(1860,3064,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(1861,3064,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(1862,3064,'_elementor_css','a:6:{s:4:\"time\";i:1631338322;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2178,3115,'_wp_page_template','page-templates/template-page-builder.php'),(2179,3115,'_elementor_edit_mode','builder'),(2180,3115,'_elementor_template_type','wp-page'),(2181,3115,'_elementor_version','3.4.3'),(2182,3115,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(1865,3065,'inline_featured_image','0'),(1866,3065,'_edit_last','1'),(1867,3065,'_wp_page_template','default'),(1868,3065,'rs_page_bg_color',''),(1869,3065,'include_rules','1'),(1870,3065,'_include_rules','field_600e8b3a91509'),(1871,3065,'exclude_rules',''),(1872,3065,'_exclude_rules','field_600e8d139150c'),(1873,3066,'include_rules',''),(1874,3066,'_include_rules','field_600e8b3a91509'),(1875,3066,'exclude_rules',''),(1876,3066,'_exclude_rules','field_600e8d139150c'),(1877,3065,'_edit_lock','1634688039:1'),(1878,3065,'include_rules_0_include_on','all'),(1879,3065,'_include_rules_0_include_on','field_600e8bd99150a'),(1880,3067,'include_rules','1'),(1881,3067,'_include_rules','field_600e8b3a91509'),(1882,3067,'exclude_rules',''),(1883,3067,'_exclude_rules','field_600e8d139150c'),(1884,3067,'include_rules_0_include_on','all'),(1885,3067,'_include_rules_0_include_on','field_600e8bd99150a'),(1886,3065,'_elementor_edit_mode','builder'),(1887,3065,'_elementor_template_type','wp-post'),(1888,3065,'_elementor_version','3.4.3'),(1889,3068,'_wp_page_template','default'),(1890,3068,'_elementor_edit_mode','builder'),(1891,3068,'_elementor_template_type','wp-post'),(1892,3068,'_elementor_version','3.4.3'),(1893,3069,'_wp_page_template','default'),(1894,3069,'_elementor_edit_mode','builder'),(1895,3069,'_elementor_template_type','wp-post'),(1896,3069,'_elementor_version','3.4.3'),(1897,3065,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Everett, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1898,3070,'_wp_page_template','default'),(1899,3070,'_elementor_edit_mode','builder'),(1900,3070,'_elementor_template_type','wp-post'),(1901,3070,'_elementor_version','3.4.3'),(1902,3070,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1903,3065,'_elementor_page_assets','a:0:{}'),(1906,3071,'_wp_page_template','default'),(1907,3071,'_elementor_edit_mode','builder'),(1908,3071,'_elementor_template_type','wp-post'),(1909,3071,'_elementor_version','3.4.3'),(1910,3071,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1911,3071,'_elementor_page_assets','a:0:{}'),(1912,3071,'_elementor_css','a:6:{s:4:\"time\";i:1631340185;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:\"\";}'),(1913,3072,'_wp_page_template','default'),(1914,3072,'_elementor_edit_mode','builder'),(1915,3072,'_elementor_template_type','wp-post'),(1916,3072,'_elementor_version','3.4.3'),(1917,3072,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1918,3072,'_elementor_page_assets','a:0:{}'),(1919,3072,'_elementor_css','a:6:{s:4:\"time\";i:1631340185;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:\"\";}'),(1920,3073,'_wp_page_template','default'),(1921,3073,'_elementor_edit_mode','builder'),(1922,3073,'_elementor_template_type','wp-post'),(1923,3073,'_elementor_version','3.4.3'),(1924,3073,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1925,3073,'_elementor_page_assets','a:0:{}'),(1926,3073,'_elementor_css','a:6:{s:4:\"time\";i:1631340185;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:\"\";}'),(1928,3074,'_wp_page_template','default'),(1929,3074,'_elementor_edit_mode','builder'),(1930,3074,'_elementor_template_type','wp-post'),(1931,3074,'_elementor_version','3.4.3'),(1932,3074,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1933,3074,'_elementor_page_assets','a:0:{}'),(1934,3075,'_wp_page_template','default'),(1935,3075,'_elementor_edit_mode','builder'),(1936,3075,'_elementor_template_type','wp-post'),(1937,3075,'_elementor_version','3.4.3'),(1938,3075,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1939,3075,'_elementor_page_assets','a:0:{}'),(1940,3076,'_wp_page_template','default'),(1941,3076,'_elementor_edit_mode','builder'),(1942,3076,'_elementor_template_type','wp-post'),(1943,3076,'_elementor_version','3.4.3'),(1944,3076,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1945,3076,'_elementor_page_assets','a:0:{}'),(1948,3077,'_wp_page_template','default'),(1949,3077,'_elementor_edit_mode','builder'),(1950,3077,'_elementor_template_type','wp-post'),(1951,3077,'_elementor_version','3.4.3'),(1952,3077,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1953,3077,'_elementor_page_assets','a:0:{}'),(1954,3077,'_elementor_css','a:6:{s:4:\"time\";i:1631340438;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(1955,3078,'_wp_page_template','default'),(1956,3078,'_elementor_edit_mode','builder'),(1957,3078,'_elementor_template_type','wp-post'),(1958,3078,'_elementor_version','3.4.3'),(1959,3078,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\"},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1960,3078,'_elementor_page_assets','a:0:{}'),(1961,3078,'_elementor_css','a:6:{s:4:\"time\";i:1631340438;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(1962,3079,'_wp_page_template','default'),(1963,3079,'_elementor_edit_mode','builder'),(1964,3079,'_elementor_template_type','wp-post'),(1965,3079,'_elementor_version','3.4.3'),(1966,3079,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1967,3079,'_elementor_page_assets','a:0:{}'),(1968,3079,'_elementor_css','a:6:{s:4:\"time\";i:1631340438;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(1972,3081,'_wp_page_template','default'),(1973,3081,'_elementor_edit_mode','builder'),(1974,3081,'_elementor_template_type','wp-post'),(1975,3081,'_elementor_version','3.4.3'),(1976,3081,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1970,3080,'_wp_attached_file','2021/09/ssl-7117.png'),(1971,3080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:411;s:6:\"height\";i:123;s:4:\"file\";s:20:\"2021/09/ssl-7117.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ssl-7117-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ssl-7117-150x123.png\";s:5:\"width\";i:150;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"ssl-7117-255x123.png\";s:5:\"width\";i:255;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"ssl-7117-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"ssl-7117-255x123.png\";s:5:\"width\";i:255;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"ssl-7117-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1977,3081,'_elementor_page_assets','a:0:{}'),(1978,3082,'_wp_page_template','default'),(1979,3082,'_elementor_edit_mode','builder'),(1980,3082,'_elementor_template_type','wp-post'),(1981,3082,'_elementor_version','3.4.3'),(1982,3082,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1983,3082,'_elementor_page_assets','a:0:{}'),(1984,3083,'_wp_page_template','default'),(1985,3083,'_elementor_edit_mode','builder'),(1986,3083,'_elementor_template_type','wp-post'),(1987,3083,'_elementor_version','3.4.3'),(1988,3083,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl-7117.png\",\"id\":3080,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1989,3083,'_elementor_page_assets','a:0:{}'),(1991,3084,'_wp_page_template','default'),(1992,3084,'_elementor_edit_mode','builder'),(1993,3084,'_elementor_template_type','wp-post'),(1994,3084,'_elementor_version','3.4.3'),(1995,3084,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl-7117.png\",\"id\":3080,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1996,3084,'_elementor_page_assets','a:0:{}'),(1997,3085,'_wp_page_template','default'),(1998,3085,'_elementor_edit_mode','builder'),(1999,3085,'_elementor_template_type','wp-post'),(2000,3085,'_elementor_version','3.4.3'),(2001,3085,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl-7117.png\",\"id\":3080,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2002,3085,'_elementor_page_assets','a:0:{}'),(2003,3086,'_wp_page_template','default'),(2004,3086,'_elementor_edit_mode','builder'),(2005,3086,'_elementor_template_type','wp-post'),(2006,3086,'_elementor_version','3.4.3'),(2007,3086,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl-7117.png\",\"id\":3080,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2008,3086,'_elementor_page_assets','a:0:{}'),(2021,3090,'_wp_page_template','default'),(2022,3090,'_elementor_edit_mode','builder'),(2023,3090,'_elementor_template_type','wp-post'),(2024,3090,'_elementor_version','3.4.3'),(2025,3090,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl-7117.png\",\"id\":3080,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2010,3087,'_wp_attached_file','2021/09/ssl-.png'),(2011,3087,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:325;s:6:\"height\";i:155;s:4:\"file\";s:16:\"2021/09/ssl-.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"ssl--300x143.png\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ssl--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:16:\"ssl--255x155.png\";s:5:\"width\";i:255;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"ssl--100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"ssl--255x155.png\";s:5:\"width\";i:255;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"ssl--100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2012,3088,'_wp_attached_file','2021/09/ssl3.png'),(2013,3088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1667;s:6:\"height\";i:799;s:4:\"file\";s:16:\"2021/09/ssl3.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"ssl3-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"ssl3-1024x491.png\";s:5:\"width\";i:1024;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ssl3-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:16:\"ssl3-768x368.png\";s:5:\"width\";i:768;s:6:\"height\";i:368;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"ssl3-1536x736.png\";s:5:\"width\";i:1536;s:6:\"height\";i:736;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"ssl3-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"ssl3-492x236.png\";s:5:\"width\";i:492;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"ssl3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"ssl3-255x255.png\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"ssl3-492x236.png\";s:5:\"width\";i:492;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"ssl3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2043,3093,'_elementor_template_type','wp-post'),(2044,3093,'_elementor_version','3.4.3'),(2045,3093,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2038,3092,'_elementor_page_assets','a:0:{}'),(2033,3092,'_wp_page_template','default'),(2034,3092,'_elementor_edit_mode','builder'),(2035,3092,'_elementor_template_type','wp-post'),(2036,3092,'_elementor_version','3.4.3'),(2037,3092,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2026,3090,'_elementor_page_assets','a:0:{}'),(2027,3091,'_wp_page_template','default'),(2028,3091,'_elementor_edit_mode','builder'),(2029,3091,'_elementor_template_type','wp-post'),(2030,3091,'_elementor_version','3.4.3'),(2031,3091,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl-7117.png\",\"id\":3080,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2032,3091,'_elementor_page_assets','a:0:{}'),(2041,3093,'_wp_page_template','default'),(2042,3093,'_elementor_edit_mode','builder'),(2046,3093,'_elementor_page_assets','a:0:{}'),(2047,3093,'_elementor_css','a:6:{s:4:\"time\";i:1631340807;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2048,3094,'_wp_page_template','default'),(2049,3094,'_elementor_edit_mode','builder'),(2050,3094,'_elementor_template_type','wp-post'),(2051,3094,'_elementor_version','3.4.3'),(2052,3094,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2053,3094,'_elementor_page_assets','a:0:{}'),(2054,3094,'_elementor_css','a:6:{s:4:\"time\";i:1631340807;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2055,3095,'_wp_page_template','default'),(2056,3095,'_elementor_edit_mode','builder'),(2057,3095,'_elementor_template_type','wp-post'),(2058,3095,'_elementor_version','3.4.3'),(2059,3095,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2060,3095,'_elementor_page_assets','a:0:{}'),(2061,3095,'_elementor_css','a:6:{s:4:\"time\";i:1631340807;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2063,3096,'_wp_page_template','default'),(2064,3096,'_elementor_edit_mode','builder'),(2065,3096,'_elementor_template_type','wp-post'),(2066,3096,'_elementor_version','3.4.3'),(2067,3096,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2068,3096,'_elementor_page_assets','a:0:{}'),(2069,3097,'_wp_page_template','default'),(2070,3097,'_elementor_edit_mode','builder'),(2071,3097,'_elementor_template_type','wp-post'),(2072,3097,'_elementor_version','3.4.3'),(2073,3097,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2074,3097,'_elementor_page_assets','a:0:{}'),(2075,3098,'_wp_page_template','default'),(2076,3098,'_elementor_edit_mode','builder'),(2077,3098,'_elementor_template_type','wp-post'),(2078,3098,'_elementor_version','3.4.3'),(2079,3098,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2080,3098,'_elementor_page_assets','a:0:{}'),(2083,3099,'_wp_page_template','default'),(2084,3099,'_elementor_edit_mode','builder'),(2085,3099,'_elementor_template_type','wp-post'),(2086,3099,'_elementor_version','3.4.3'),(2087,3099,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2088,3099,'_elementor_page_assets','a:0:{}'),(2089,3099,'_elementor_css','a:6:{s:4:\"time\";i:1631341076;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2090,3100,'_wp_page_template','default'),(2091,3100,'_elementor_edit_mode','builder'),(2092,3100,'_elementor_template_type','wp-post'),(2093,3100,'_elementor_version','3.4.3'),(2094,3100,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2095,3100,'_elementor_page_assets','a:0:{}'),(2096,3100,'_elementor_css','a:6:{s:4:\"time\";i:1631341076;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2097,3101,'_wp_page_template','default'),(2098,3101,'_elementor_edit_mode','builder'),(2099,3101,'_elementor_template_type','wp-post'),(2100,3101,'_elementor_version','3.4.3'),(2101,3101,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2102,3101,'_elementor_page_assets','a:0:{}'),(2103,3101,'_elementor_css','a:6:{s:4:\"time\";i:1631341076;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2105,3102,'_wp_page_template','default'),(2106,3102,'_elementor_edit_mode','builder'),(2107,3102,'_elementor_template_type','wp-post'),(2108,3102,'_elementor_version','3.4.3'),(2109,3102,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2110,3102,'_elementor_page_assets','a:0:{}'),(2111,3103,'_wp_page_template','default'),(2112,3103,'_elementor_edit_mode','builder'),(2113,3103,'_elementor_template_type','wp-post'),(2114,3103,'_elementor_version','3.4.3'),(2115,3103,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2116,3103,'_elementor_page_assets','a:0:{}'),(2117,3104,'_wp_page_template','default'),(2118,3104,'_elementor_edit_mode','builder'),(2119,3104,'_elementor_template_type','wp-post'),(2120,3104,'_elementor_version','3.4.3'),(2121,3104,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2122,3104,'_elementor_page_assets','a:0:{}'),(2154,3111,'_wp_page_template','default'),(2155,3111,'_elementor_edit_mode','builder'),(2156,3111,'_elementor_template_type','wp-post'),(2157,3111,'_elementor_version','3.4.3'),(2158,3111,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2125,3105,'_wp_attached_file','2021/09/candc-motorsports.jpg'),(2126,3105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2100;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2021/09/candc-motorsports.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"candc-motorsports-300x143.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"candc-motorsports-1024x488.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"candc-motorsports-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:\"candc-motorsports-768x366.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"candc-motorsports-1536x731.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"candc-motorsports-2048x975.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:975;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"candc-motorsports-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"candc-motorsports-492x234.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"candc-motorsports-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"candc-motorsports-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"candc-motorsports-492x234.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"candc-motorsports-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2127,3106,'_wp_attached_file','2021/09/Screen-Shot-2021-09-13-at-11.02.15-AM.png'),(2128,3106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:464;s:6:\"height\";i:206;s:4:\"file\";s:49:\"2021/09/Screen-Shot-2021-09-13-at-11.02.15-AM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.02.15-AM-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.02.15-AM-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:49:\"Screen-Shot-2021-09-13-at-11.02.15-AM-255x206.png\";s:5:\"width\";i:255;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.02.15-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.02.15-AM-255x206.png\";s:5:\"width\";i:255;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.02.15-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2129,3107,'_wp_attached_file','2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png'),(2130,3107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:166;s:4:\"file\";s:49:\"2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.04.03-AM-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:49:\"Screen-Shot-2021-09-13-at-11.04.03-AM-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:49:\"Screen-Shot-2021-09-13-at-11.04.03-AM-255x166.png\";s:5:\"width\";i:255;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.04.03-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.04.03-AM-255x166.png\";s:5:\"width\";i:255;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-09-13-at-11.04.03-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2136,3108,'_elementor_page_assets','a:0:{}'),(2137,3108,'_elementor_css','a:6:{s:4:\"time\";i:1631265916;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2138,3109,'_wp_page_template','default'),(2139,3109,'_elementor_edit_mode','builder'),(2140,3109,'_elementor_template_type','wp-post'),(2141,3109,'_elementor_version','3.4.3'),(2142,3109,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2143,3109,'_elementor_page_assets','a:0:{}'),(2144,3109,'_elementor_css','a:6:{s:4:\"time\";i:1631265916;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2145,3110,'_wp_page_template','default'),(2146,3110,'_elementor_edit_mode','builder'),(2147,3110,'_elementor_template_type','wp-post'),(2148,3110,'_elementor_version','3.4.3'),(2149,3110,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2150,3110,'_elementor_page_assets','a:0:{}'),(2151,3110,'_elementor_css','a:6:{s:4:\"time\";i:1631265916;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2643,3184,'_wp_page_template','default'),(2644,3184,'_elementor_edit_mode','builder'),(2645,3184,'_elementor_template_type','wp-post'),(2646,3184,'_elementor_version','3.4.3'),(2647,3184,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2159,3111,'_elementor_page_assets','a:0:{}'),(2160,3111,'_elementor_css','a:6:{s:4:\"time\";i:1631404041;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2161,3112,'_wp_page_template','default'),(2162,3112,'_elementor_edit_mode','builder'),(2163,3112,'_elementor_template_type','wp-post'),(2164,3112,'_elementor_version','3.4.3'),(2165,3112,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.04.34-AM.png\",\"id\":2832,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2166,3112,'_elementor_page_assets','a:0:{}'),(2167,3112,'_elementor_css','a:6:{s:4:\"time\";i:1631404041;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2168,3113,'_wp_page_template','default'),(2169,3113,'_elementor_edit_mode','builder'),(2170,3113,'_elementor_template_type','wp-post'),(2171,3113,'_elementor_version','3.4.3'),(2172,3113,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2173,3113,'_elementor_page_assets','a:0:{}'),(2174,3113,'_elementor_css','a:6:{s:4:\"time\";i:1631404041;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2982,3232,'_wp_page_template','default'),(2983,3232,'_elementor_edit_mode','builder'),(2984,3232,'_elementor_template_type','wp-post'),(2985,3232,'_elementor_version','3.4.3'),(2986,3232,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3003,3065,'_elementor_controls_usage','a:7:{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:1:{s:5:\"image\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";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:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:10:\"text_color\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}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:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;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:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_text_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:22:\"shadepro-vertical-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_menu_style\";a:3:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:10:\"menu_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";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:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(2981,3231,'inline_featured_image','0'),(2183,3115,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2184,3115,'_elementor_css','a:6:{s:4:\"time\";i:1631339786;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2185,3116,'_wp_page_template','page-templates/template-page-builder.php'),(2186,3116,'_elementor_edit_mode','builder'),(2187,3116,'_elementor_template_type','wp-page'),(2188,3116,'_elementor_version','3.4.3'),(2189,3116,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C and C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2190,3116,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2191,3116,'_elementor_css','a:6:{s:4:\"time\";i:1631339786;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2192,3117,'_wp_page_template','page-templates/template-page-builder.php'),(2193,3117,'_elementor_edit_mode','builder'),(2194,3117,'_elementor_template_type','wp-page'),(2195,3117,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (2196,3117,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2197,3117,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2198,3117,'_elementor_css','a:6:{s:4:\"time\";i:1631339786;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2389,3148,'_wp_page_template','page-templates/template-page-builder.php'),(2390,3148,'_elementor_edit_mode','builder'),(2391,3148,'_elementor_template_type','wp-page'),(2392,3148,'_elementor_version','3.4.3'),(2393,3148,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2201,2,'_edit_lock','1633492166:1'),(2202,2,'_elementor_edit_mode','builder'),(2203,2,'_elementor_template_type','wp-page'),(2204,2,'_elementor_version','3.4.3'),(2223,3121,'_elementor_template_type','wp-page'),(2222,3121,'_elementor_edit_mode','builder'),(2221,3121,'_wp_page_template','default'),(2220,2,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2211,3119,'_wp_page_template','default'),(2212,3119,'_elementor_edit_mode','builder'),(2213,3119,'_elementor_template_type','wp-page'),(2214,3119,'_elementor_version','3.4.3'),(2215,2,'inline_featured_image','0'),(2216,3120,'_wp_page_template','default'),(2217,3120,'_elementor_edit_mode','builder'),(2218,3120,'_elementor_template_type','wp-page'),(2219,3120,'_elementor_version','3.4.3'),(2224,3121,'_elementor_version','3.4.3'),(2225,3121,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2226,2,'_elementor_page_assets','a:0:{}'),(2228,3122,'_wp_page_template','default'),(2229,3122,'_elementor_edit_mode','builder'),(2230,3122,'_elementor_template_type','wp-page'),(2231,3122,'_elementor_version','3.4.3'),(2232,3122,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2233,3122,'_elementor_page_assets','a:0:{}'),(2234,3123,'_wp_page_template','default'),(2235,3123,'_elementor_edit_mode','builder'),(2236,3123,'_elementor_template_type','wp-page'),(2237,3123,'_elementor_version','3.4.3'),(2238,3123,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2239,3123,'_elementor_page_assets','a:0:{}'),(2240,3124,'_wp_page_template','default'),(2241,3124,'_elementor_edit_mode','builder'),(2242,3124,'_elementor_template_type','wp-page'),(2243,3124,'_elementor_version','3.4.3'),(2244,3124,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2245,3124,'_elementor_page_assets','a:0:{}'),(2254,3126,'_wp_page_template','default'),(2255,3126,'_elementor_edit_mode','builder'),(2256,3126,'_elementor_template_type','wp-page'),(2257,3126,'_elementor_version','3.4.3'),(2258,3126,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2271,3128,'_elementor_page_assets','a:0:{}'),(2266,3128,'_wp_page_template','default'),(2267,3128,'_elementor_edit_mode','builder'),(2268,3128,'_elementor_template_type','wp-page'),(2269,3128,'_elementor_version','3.4.3'),(2270,3128,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2259,3126,'_elementor_page_assets','a:0:{}'),(2260,3127,'_wp_page_template','default'),(2261,3127,'_elementor_edit_mode','builder'),(2262,3127,'_elementor_template_type','wp-page'),(2263,3127,'_elementor_version','3.4.3'),(2264,3127,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2265,3127,'_elementor_page_assets','a:0:{}'),(2280,3130,'_wp_page_template','default'),(2281,3130,'_elementor_edit_mode','builder'),(2282,3130,'_elementor_template_type','wp-page'),(2283,3130,'_elementor_version','3.4.3'),(2284,3130,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2297,3132,'_elementor_page_assets','a:0:{}'),(2292,3132,'_wp_page_template','default'),(2293,3132,'_elementor_edit_mode','builder'),(2294,3132,'_elementor_template_type','wp-page'),(2295,3132,'_elementor_version','3.4.3'),(2296,3132,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-1.jpeg\",\"id\":2998,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2285,3130,'_elementor_page_assets','a:0:{}'),(2286,3131,'_wp_page_template','default'),(2287,3131,'_elementor_edit_mode','builder'),(2288,3131,'_elementor_template_type','wp-page'),(2289,3131,'_elementor_version','3.4.3'),(2290,3131,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2291,3131,'_elementor_page_assets','a:0:{}'),(2306,3134,'_wp_page_template','default'),(2307,3134,'_elementor_edit_mode','builder'),(2308,3134,'_elementor_template_type','wp-page'),(2309,3134,'_elementor_version','3.4.3'),(2310,3134,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-1.jpeg\",\"id\":2998,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2323,3136,'_elementor_page_assets','a:0:{}'),(2318,3136,'_wp_page_template','default'),(2319,3136,'_elementor_edit_mode','builder'),(2320,3136,'_elementor_template_type','wp-page'),(2321,3136,'_elementor_version','3.4.3'),(2322,3136,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-1.jpeg\",\"id\":2998,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2311,3134,'_elementor_page_assets','a:0:{}'),(2312,3135,'_wp_page_template','default'),(2313,3135,'_elementor_edit_mode','builder'),(2314,3135,'_elementor_template_type','wp-page'),(2315,3135,'_elementor_version','3.4.3'),(2316,3135,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-1.jpeg\",\"id\":2998,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2317,3135,'_elementor_page_assets','a:0:{}'),(2334,3141,'_wp_page_template','default'),(2335,3141,'_elementor_edit_mode','builder'),(2336,3141,'_elementor_template_type','wp-page'),(2337,3141,'_elementor_version','3.4.3'),(2338,3141,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-1.jpeg\",\"id\":2998,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2326,3137,'_wp_attached_file','2021/10/pexels-scosche-1149056-1.jpg'),(2327,3137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2021/10/pexels-scosche-1149056-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"pexels-scosche-1149056-1-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:36:\"pexels-scosche-1149056-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"pexels-scosche-1149056-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"pexels-scosche-1149056-1-492x328.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"pexels-scosche-1149056-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"pexels-scosche-1149056-1-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"pexels-scosche-1149056-1-492x328.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"pexels-scosche-1149056-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2328,3138,'_wp_attached_file','2021/10/jeep-pic-1-1.jpeg'),(2329,3138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:25:\"2021/10/jeep-pic-1-1.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"jeep-pic-1-1-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:25:\"jeep-pic-1-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"jeep-pic-1-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"jeep-pic-1-1-492x328.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"jeep-pic-1-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"jeep-pic-1-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"jeep-pic-1-1-492x328.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"jeep-pic-1-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Getty Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:126:\"Coahuila, Mexico. November 17, 2019. Photography of an all road jeep  in a desert landscape with a blue cloudy sky in daytime.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2330,3139,'_wp_attached_file','2021/10/C48CCAE8-2.jpg'),(2331,3139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2021/10/C48CCAE8-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-2-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:22:\"C48CCAE8-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"C48CCAE8-2-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-2-492x328.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-2-255x255.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-2-492x328.jpg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"C48CCAE8-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2332,3140,'_wp_attached_file','2021/10/lifted-tahoe-1-1.jpeg'),(2333,3140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2021/10/lifted-tahoe-1-1.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"lifted-tahoe-1-1-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:\"lifted-tahoe-1-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"lifted-tahoe-1-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"lifted-tahoe-1-1-492x328.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"lifted-tahoe-1-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"lifted-tahoe-1-1-255x255.jpeg\";s:5:\"width\";i:255;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"lifted-tahoe-1-1-492x328.jpeg\";s:5:\"width\";i:492;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"lifted-tahoe-1-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2339,3141,'_elementor_page_assets','a:0:{}'),(2340,3141,'_elementor_css','a:6:{s:4:\"time\";i:1633488027;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:\"\";}'),(2341,3142,'_wp_page_template','default'),(2342,3142,'_elementor_edit_mode','builder'),(2343,3142,'_elementor_template_type','wp-page'),(2344,3142,'_elementor_version','3.4.3'),(2345,3142,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/truck-suspension-1-.jpeg\",\"id\":2954,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-1.jpeg\",\"id\":2998,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461.jpg\",\"id\":2991,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2346,3142,'_elementor_page_assets','a:0:{}'),(2347,3142,'_elementor_css','a:6:{s:4:\"time\";i:1633488027;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:\"\";}'),(2348,3143,'_wp_page_template','default'),(2349,3143,'_elementor_edit_mode','builder'),(2350,3143,'_elementor_template_type','wp-page'),(2351,3143,'_elementor_version','3.4.3'),(2352,3143,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2353,3143,'_elementor_page_assets','a:0:{}'),(2354,3143,'_elementor_css','a:6:{s:4:\"time\";i:1633488027;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:\"\";}'),(2356,3144,'_wp_page_template','default'),(2357,3144,'_elementor_edit_mode','builder'),(2358,3144,'_elementor_template_type','wp-page'),(2359,3144,'_elementor_version','3.4.3'),(2360,3144,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2361,3144,'_elementor_page_assets','a:0:{}'),(2362,3145,'_wp_page_template','default'),(2363,3145,'_elementor_edit_mode','builder'),(2364,3145,'_elementor_template_type','wp-page'),(2365,3145,'_elementor_version','3.4.3'),(2366,3145,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2367,3145,'_elementor_page_assets','a:0:{}'),(2368,3146,'_wp_page_template','default'),(2369,3146,'_elementor_edit_mode','builder'),(2370,3146,'_elementor_template_type','wp-page'),(2371,3146,'_elementor_version','3.4.3'),(2372,3146,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2373,3146,'_elementor_page_assets','a:0:{}'),(2374,2,'_elementor_controls_usage','a:6:{s:19:\"shadepro-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_tiem_style\";a:4:{s:33:\"breadcroumb_typography_typography\";i:1;s:32:\"breadcroumb_typography_font_size\";i:1;s:17:\"breadcroumb_color\";i:1;s:22:\"breadcroumb_link_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:9;s:12:\"border_width\";i:9;s:12:\"border_color\";i:8;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:25:\"section_advanced_gradient\";a:1:{s:24:\"shadepro_enable_gradient\";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:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";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_title\";a:2:{s:5:\"title\";i:4;s:5:\"align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;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:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}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:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}}'),(2375,2,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2376,3147,'_wp_page_template','default'),(2377,3147,'_elementor_edit_mode','builder'),(2378,3147,'_elementor_template_type','wp-page'),(2379,3147,'_elementor_version','3.4.3'),(2380,3147,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2381,3147,'_elementor_page_assets','a:0:{}'),(2382,3147,'_elementor_controls_usage','a:6:{s:19:\"shadepro-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_tiem_style\";a:4:{s:33:\"breadcroumb_typography_typography\";i:1;s:32:\"breadcroumb_typography_font_size\";i:1;s:17:\"breadcroumb_color\";i:1;s:22:\"breadcroumb_link_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:9;s:12:\"border_width\";i:9;s:12:\"border_color\";i:8;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:25:\"section_advanced_gradient\";a:1:{s:24:\"shadepro_enable_gradient\";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:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";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_title\";a:2:{s:5:\"title\";i:4;s:5:\"align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;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:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}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:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}}'),(2383,3147,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2384,2,'_edit_last','1'),(2385,2,'body_background_color',''),(2386,2,'_body_background_color','field_5c721ec24addf'),(2387,3147,'body_background_color',''),(2388,3147,'_body_background_color','field_5c721ec24addf'),(2394,3148,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2395,3148,'_elementor_css','a:6:{s:4:\"time\";i:1633481867;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2396,3149,'_wp_page_template','page-templates/template-page-builder.php'),(2397,3149,'_elementor_edit_mode','builder'),(2398,3149,'_elementor_template_type','wp-page'),(2399,3149,'_elementor_version','3.4.3'),(2400,3149,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C and C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C and C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact CandC today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C and C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2401,3149,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2402,3149,'_elementor_css','a:6:{s:4:\"time\";i:1633481867;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2403,3150,'_wp_page_template','page-templates/template-page-builder.php'),(2404,3150,'_elementor_edit_mode','builder'),(2405,3150,'_elementor_template_type','wp-page'),(2406,3150,'_elementor_version','3.4.3'),(2407,3150,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2408,3150,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2409,3150,'_elementor_css','a:6:{s:4:\"time\";i:1633481867;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2666,3187,'_wp_page_template','page-templates/template-page-builder.php'),(2667,3187,'_elementor_edit_mode','builder'),(2668,3187,'_elementor_template_type','wp-page'),(2669,3187,'_elementor_version','3.4.3'),(2670,3187,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2412,3151,'inline_featured_image','0'),(2413,3151,'_wp_page_template','default'),(2414,3151,'_edit_lock','1633494913:1'),(2415,3151,'_elementor_edit_mode','builder'),(2416,3151,'_elementor_template_type','wp-page'),(2417,3151,'_elementor_version','3.4.3'),(2418,3151,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2466,3158,'_wp_page_template','default'),(2467,3158,'_elementor_edit_mode','builder'),(2468,3158,'_elementor_template_type','wp-page'),(2469,3158,'_elementor_version','3.4.3'),(2470,3158,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2471,3158,'_elementor_page_assets','a:0:{}'),(2472,3158,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2497,3163,'_wp_page_template','default'),(2498,3163,'_elementor_edit_mode','builder'),(2499,3163,'_elementor_template_type','wp-page'),(2500,3163,'_elementor_version','3.4.3'),(2501,3163,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2474,3159,'_elementor_edit_mode','builder'),(2475,3159,'_elementor_template_type','section'),(2476,3159,'inline_featured_image','0'),(2477,3159,'_elementor_version','3.4.3'),(2478,3160,'_elementor_edit_mode','builder'),(2479,3160,'_elementor_template_type','section'),(2480,3160,'_elementor_version','3.4.3'),(2481,3159,'_wp_page_template','default'),(2483,3161,'_elementor_edit_mode','builder'),(2482,3159,'_elementor_data','[{\"id\":\"37f1ee0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c934f32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"27cfd86b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"259b7d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6010b5a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"739bb9fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e64172c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"75dee1da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2419,3151,'inline_featured_image','0'),(2420,3151,'_elementor_page_assets','a:0:{}'),(2452,3156,'_wp_page_template','default'),(2453,3156,'_elementor_edit_mode','builder'),(2454,3156,'_elementor_template_type','wp-page'),(2455,3156,'_elementor_version','3.4.3'),(2456,3156,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2423,3151,'_edit_last','1'),(2424,3151,'body_background_color',''),(2425,3151,'_body_background_color','field_5c721ec24addf'),(2426,3152,'_wp_page_template','default'),(2427,3152,'_elementor_edit_mode','builder'),(2428,3152,'_elementor_template_type','wp-page'),(2429,3152,'_elementor_version','3.4.3'),(2430,3152,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2431,3152,'_elementor_page_assets','a:0:{}'),(2432,3152,'_elementor_controls_usage','a:6:{s:19:\"shadepro-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_tiem_style\";a:4:{s:33:\"breadcroumb_typography_typography\";i:1;s:32:\"breadcroumb_typography_font_size\";i:1;s:17:\"breadcroumb_color\";i:1;s:22:\"breadcroumb_link_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:9;s:12:\"border_width\";i:9;s:12:\"border_color\";i:8;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:25:\"section_advanced_gradient\";a:1:{s:24:\"shadepro_enable_gradient\";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:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";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_title\";a:2:{s:5:\"title\";i:4;s:5:\"align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;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:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}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:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}}'),(2433,3152,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2434,3152,'body_background_color',''),(2435,3152,'_body_background_color','field_5c721ec24addf'),(2436,3153,'_elementor_edit_mode','builder'),(2437,3153,'_elementor_template_type','section'),(2438,3153,'inline_featured_image','0'),(2439,3153,'_elementor_version','3.4.3'),(2440,3154,'_elementor_edit_mode','builder'),(2441,3154,'_elementor_template_type','section'),(2442,3154,'_elementor_version','3.4.3'),(2443,3153,'_wp_page_template','default'),(2444,3153,'_elementor_data','[{\"id\":\"65ddaddc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"4b451d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f83a29\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d9d7695\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"62f2d8bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7386c694\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"537e2069\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"752acb35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bb2736\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"75a270d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d4cd68d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2b04a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"6a4252d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67900bf8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb7eefc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"31c35094\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"494dac1\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68c6b645\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7cf0100f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70124e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9729083\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"6813ca9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c548ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5df8e155\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"7cd4bc1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a21e78b\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2445,3155,'_elementor_edit_mode','builder'),(2446,3155,'_elementor_template_type','section'),(2447,3155,'_elementor_version','3.4.3'),(2448,3155,'_wp_page_template','default'),(2449,3155,'_elementor_data','[{\"id\":\"65ddaddc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"4b451d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f83a29\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"5d9d7695\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"62f2d8bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7386c694\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"537e2069\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"752acb35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bb2736\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"75a270d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d4cd68d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2b04a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"6a4252d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67900bf8\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb7eefc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"31c35094\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"494dac1\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68c6b645\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7cf0100f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70124e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9729083\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"6813ca9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c548ec8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5df8e155\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"7cd4bc1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a21e78b\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2450,3153,'_elementor_page_assets','a:0:{}'),(2451,3153,'_elementor_controls_usage','a:5:{s:7:\"heading\";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_title\";a:2:{s:5:\"title\";i:4;s:5:\"align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;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:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:9;s:12:\"border_width\";i:9;s:12:\"border_color\";i:8;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}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:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:5;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(2457,3156,'_elementor_page_assets','a:0:{}'),(2458,3156,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2459,3157,'_wp_page_template','default'),(2460,3157,'_elementor_edit_mode','builder'),(2461,3157,'_elementor_template_type','wp-page'),(2462,3157,'_elementor_version','3.4.3'),(2463,3157,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2464,3157,'_elementor_page_assets','a:0:{}'),(2465,3157,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2484,3161,'_elementor_template_type','section'),(2485,3161,'_elementor_version','3.4.3'),(2486,3161,'_wp_page_template','default'),(2487,3161,'_elementor_data','[{\"id\":\"37f1ee0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c934f32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"27cfd86b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"259b7d0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6010b5a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"739bb9fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e64172c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"75dee1da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2488,3159,'_elementor_page_assets','a:0:{}'),(2489,3159,'_elementor_controls_usage','a:7:{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:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"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:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";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:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";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:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";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:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";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:7:\"_margin\";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:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";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:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(2528,3168,'_wp_page_template','default'),(2529,3168,'_elementor_edit_mode','builder'),(2530,3168,'_elementor_template_type','wp-page'),(2531,3168,'_elementor_version','3.4.3'),(2532,3168,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2509,3165,'_wp_page_template','default'),(2510,3165,'_elementor_edit_mode','builder'),(2511,3165,'_elementor_template_type','wp-page'),(2512,3165,'_elementor_version','3.4.3'),(2513,3165,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41ed26ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62f68c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7f850497\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"796fba0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d83b74a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2502,3163,'_elementor_page_assets','a:0:{}'),(2503,3164,'_wp_page_template','default'),(2504,3164,'_elementor_edit_mode','builder'),(2505,3164,'_elementor_template_type','wp-page'),(2506,3164,'_elementor_version','3.4.3'),(2507,3164,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2508,3164,'_elementor_page_assets','a:0:{}'),(2514,3165,'_elementor_page_assets','a:0:{}'),(2516,3166,'_wp_page_template','default'),(2517,3166,'_elementor_edit_mode','builder'),(2518,3166,'_elementor_template_type','wp-page'),(2519,3166,'_elementor_version','3.4.3'),(2520,3166,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41ed26ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62f68c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7f850497\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"796fba0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d83b74a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2521,3166,'_elementor_page_assets','a:0:{}'),(2522,3167,'_wp_page_template','default'),(2523,3167,'_elementor_edit_mode','builder'),(2524,3167,'_elementor_template_type','wp-page'),(2525,3167,'_elementor_version','3.4.3'),(2526,3167,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41ed26ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62f68c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7f850497\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"796fba0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d83b74a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2527,3167,'_elementor_page_assets','a:0:{}'),(2533,3168,'_elementor_page_assets','a:0:{}'),(2535,3169,'_wp_page_template','default'),(2536,3169,'_elementor_edit_mode','builder'),(2537,3169,'_elementor_template_type','wp-page'),(2538,3169,'_elementor_version','3.4.3'),(2539,3169,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2540,3169,'_elementor_page_assets','a:0:{}'),(2541,3170,'_wp_page_template','default'),(2542,3170,'_elementor_edit_mode','builder'),(2543,3170,'_elementor_template_type','wp-page'),(2544,3170,'_elementor_version','3.4.3'),(2545,3170,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2546,3170,'_elementor_page_assets','a:0:{}'),(2547,3171,'_wp_page_template','default'),(2548,3171,'_elementor_edit_mode','builder'),(2549,3171,'_elementor_template_type','wp-page'),(2550,3171,'_elementor_version','3.4.3'),(2551,3171,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2552,3171,'_elementor_page_assets','a:0:{}'),(2554,3172,'_wp_page_template','default'),(2555,3172,'_elementor_edit_mode','builder'),(2556,3172,'_elementor_template_type','wp-page'),(2557,3172,'_elementor_version','3.4.3'),(2558,3172,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2559,3172,'_elementor_page_assets','a:0:{}'),(2560,3173,'_wp_page_template','default'),(2561,3173,'_elementor_edit_mode','builder'),(2562,3173,'_elementor_template_type','wp-page'),(2563,3173,'_elementor_version','3.4.3'),(2564,3173,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2565,3173,'_elementor_page_assets','a:0:{}'),(2566,3174,'_wp_page_template','default'),(2567,3174,'_elementor_edit_mode','builder'),(2568,3174,'_elementor_template_type','wp-page'),(2569,3174,'_elementor_version','3.4.3'),(2570,3174,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2571,3174,'_elementor_page_assets','a:0:{}'),(2574,3175,'_wp_page_template','default'),(2575,3175,'_elementor_edit_mode','builder'),(2576,3175,'_elementor_template_type','wp-page'),(2577,3175,'_elementor_version','3.4.3'),(2578,3175,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2579,3175,'_elementor_page_assets','a:0:{}'),(2580,3175,'_elementor_css','a:6:{s:4:\"time\";i:1633493734;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2581,3176,'_wp_page_template','default'),(2582,3176,'_elementor_edit_mode','builder'),(2583,3176,'_elementor_template_type','wp-page'),(2584,3176,'_elementor_version','3.4.3'),(2585,3176,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2586,3176,'_elementor_page_assets','a:0:{}'),(2587,3176,'_elementor_css','a:6:{s:4:\"time\";i:1633493734;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2588,3177,'_wp_page_template','default'),(2589,3177,'_elementor_edit_mode','builder'),(2590,3177,'_elementor_template_type','wp-page'),(2591,3177,'_elementor_version','3.4.3'),(2592,3177,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2593,3177,'_elementor_page_assets','a:0:{}'),(2594,3177,'_elementor_css','a:6:{s:4:\"time\";i:1633493734;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2596,3178,'_wp_page_template','default'),(2597,3178,'_elementor_edit_mode','builder'),(2598,3178,'_elementor_template_type','wp-page'),(2599,3178,'_elementor_version','3.4.3'),(2600,3178,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2601,3178,'_elementor_page_assets','a:0:{}'),(2602,3179,'_wp_page_template','default'),(2603,3179,'_elementor_edit_mode','builder'),(2604,3179,'_elementor_template_type','wp-page'),(2605,3179,'_elementor_version','3.4.3'),(2606,3179,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2607,3179,'_elementor_page_assets','a:0:{}'),(2608,3180,'_wp_page_template','default'),(2609,3180,'_elementor_edit_mode','builder'),(2610,3180,'_elementor_template_type','wp-page'),(2611,3180,'_elementor_version','3.4.3'),(2612,3180,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2613,3180,'_elementor_page_assets','a:0:{}'),(2616,3181,'_wp_page_template','default'),(2617,3181,'_elementor_edit_mode','builder'),(2618,3181,'_elementor_template_type','wp-page'),(2619,3181,'_elementor_version','3.4.3'),(2620,3181,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2621,3181,'_elementor_page_assets','a:0:{}'),(2622,3181,'_elementor_css','a:6:{s:4:\"time\";i:1633493775;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2623,3182,'_wp_page_template','default'),(2624,3182,'_elementor_edit_mode','builder'),(2625,3182,'_elementor_template_type','wp-page'),(2626,3182,'_elementor_version','3.4.3'),(2627,3182,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2628,3182,'_elementor_page_assets','a:0:{}'),(2629,3182,'_elementor_css','a:6:{s:4:\"time\";i:1633493775;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2630,3183,'_wp_page_template','default'),(2631,3183,'_elementor_edit_mode','builder'),(2632,3183,'_elementor_template_type','wp-page'),(2633,3183,'_elementor_version','3.4.3'),(2634,3183,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2635,3183,'_elementor_page_assets','a:0:{}'),(2636,3183,'_elementor_css','a:6:{s:4:\"time\";i:1633493775;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2727,3196,'_wp_page_template','default'),(2728,3196,'_elementor_edit_mode','builder'),(2729,3196,'_elementor_template_type','wp-page'),(2730,3196,'_elementor_version','3.4.3'),(2731,3196,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2638,2891,'_wp_old_date','2021-09-10'),(2639,2893,'_wp_old_date','2021-09-10'),(2640,2892,'_wp_old_date','2021-09-10'),(2641,2894,'_wp_old_date','2021-09-10'),(2648,3184,'_elementor_page_assets','a:0:{}'),(2649,3184,'_elementor_css','a:6:{s:4:\"time\";i:1631556291;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2650,3185,'_wp_page_template','default'),(2651,3185,'_elementor_edit_mode','builder'),(2652,3185,'_elementor_template_type','wp-post'),(2653,3185,'_elementor_version','3.4.3'),(2654,3185,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2655,3185,'_elementor_page_assets','a:0:{}'),(2656,3185,'_elementor_css','a:6:{s:4:\"time\";i:1631556291;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2657,3186,'_wp_page_template','default'),(2658,3186,'_elementor_edit_mode','builder'),(2659,3186,'_elementor_template_type','wp-post'),(2660,3186,'_elementor_version','3.4.3'),(2661,3186,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/candc117.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2662,3186,'_elementor_page_assets','a:0:{}'),(2663,3186,'_elementor_css','a:6:{s:4:\"time\";i:1631556291;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2958,3228,'_wp_page_template','default'),(2959,3228,'_elementor_edit_mode','builder'),(2960,3228,'_elementor_template_type','wp-post'),(2961,3228,'_elementor_version','3.4.3'),(2962,3228,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/candc117.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2979,2811,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";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:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:18:\"shadepro-main-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:7:\"general\";a:1:{s:10:\"menu_align\";i:1;}}s:5:\"style\";a:1:{s:10:\"menu_style\";a:2:{s:10:\"menu_color\";i:1;s:16:\"menu_hover_color\";i:1;}}}}}'),(2671,3187,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2672,3187,'_elementor_css','a:6:{s:4:\"time\";i:1633492442;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2673,3188,'_wp_page_template','page-templates/template-page-builder.php'),(2674,3188,'_elementor_edit_mode','builder'),(2675,3188,'_elementor_template_type','wp-page'),(2676,3188,'_elementor_version','3.4.3'),(2677,3188,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2678,3188,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2679,3188,'_elementor_css','a:6:{s:4:\"time\";i:1633492442;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2680,3189,'_wp_page_template','page-templates/template-page-builder.php'),(2681,3189,'_elementor_edit_mode','builder'),(2682,3189,'_elementor_template_type','wp-page'),(2683,3189,'_elementor_version','3.4.3'),(2684,3189,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2685,3189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2686,3189,'_elementor_css','a:6:{s:4:\"time\";i:1633492442;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:7;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2688,3190,'_wp_page_template','page-templates/template-page-builder.php'),(2689,3190,'_elementor_edit_mode','builder'),(2690,3190,'_elementor_template_type','wp-page'),(2691,3190,'_elementor_version','3.4.3'),(2692,3190,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2693,3190,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2694,3191,'_wp_page_template','page-templates/template-page-builder.php'),(2695,3191,'_elementor_edit_mode','builder'),(2696,3191,'_elementor_template_type','wp-page'),(2697,3191,'_elementor_version','3.4.3'),(2698,3191,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2699,3191,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2700,3192,'_wp_page_template','page-templates/template-page-builder.php'),(2701,3192,'_elementor_edit_mode','builder'),(2702,3192,'_elementor_template_type','wp-page'),(2703,3192,'_elementor_version','3.4.3'),(2704,3192,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2705,3192,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2707,3193,'_wp_page_template','page-templates/template-page-builder.php'),(2708,3193,'_elementor_edit_mode','builder'),(2709,3193,'_elementor_template_type','wp-page'),(2710,3193,'_elementor_version','3.4.3'),(2711,3193,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2712,3193,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2713,3194,'_wp_page_template','page-templates/template-page-builder.php'),(2714,3194,'_elementor_edit_mode','builder'),(2715,3194,'_elementor_template_type','wp-page'),(2716,3194,'_elementor_version','3.4.3'),(2717,3194,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"551c5f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2718,3194,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2719,3195,'_wp_page_template','page-templates/template-page-builder.php'),(2720,3195,'_elementor_edit_mode','builder'),(2721,3195,'_elementor_template_type','wp-page'),(2722,3195,'_elementor_version','3.4.3');
INSERT INTO `wp9l_postmeta` VALUES (2723,3195,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2724,3195,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2877,3216,'_wp_page_template','page-templates/template-page-builder.php'),(2878,3216,'_elementor_edit_mode','builder'),(2879,3216,'_elementor_template_type','wp-page'),(2880,3216,'_elementor_version','3.4.3'),(2881,3216,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2732,3196,'_elementor_page_assets','a:0:{}'),(2733,3196,'_elementor_css','a:6:{s:4:\"time\";i:1633493871;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2734,3197,'_wp_page_template','default'),(2735,3197,'_elementor_edit_mode','builder'),(2736,3197,'_elementor_template_type','wp-page'),(2737,3197,'_elementor_version','3.4.3'),(2738,3197,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2739,3197,'_elementor_page_assets','a:0:{}'),(2740,3197,'_elementor_css','a:6:{s:4:\"time\";i:1633493871;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2741,3198,'_wp_page_template','default'),(2742,3198,'_elementor_edit_mode','builder'),(2743,3198,'_elementor_template_type','wp-page'),(2744,3198,'_elementor_version','3.4.3'),(2745,3198,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2303186a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"526a5dfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"42744d8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2746,3198,'_elementor_page_assets','a:0:{}'),(2747,3198,'_elementor_css','a:6:{s:4:\"time\";i:1633493871;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2749,3199,'inline_featured_image','0'),(2750,3199,'_wp_page_template','default'),(2751,3199,'_edit_lock','1633495031:1'),(2752,3199,'_elementor_edit_mode','builder'),(2753,3199,'_elementor_template_type','wp-page'),(2754,3199,'_elementor_version','3.4.3'),(2755,3199,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf3cc21\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a95c905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"16279d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13797a70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"64aac775\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a80ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"23b351a1\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"43142f3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fdd8d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"29847ad8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2823,3208,'_wp_page_template','default'),(2824,3208,'_elementor_edit_mode','builder'),(2825,3208,'_elementor_template_type','wp-page'),(2826,3208,'_elementor_version','3.4.3'),(2827,3208,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a4ea1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5609abf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37a387cf\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"32bcace5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836b394\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9c1cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"177ec222\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"70986fde\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2796,3204,'_wp_page_template','default'),(2797,3204,'_elementor_edit_mode','builder'),(2798,3204,'_elementor_template_type','wp-page'),(2799,3204,'_elementor_version','3.4.3'),(2756,3199,'inline_featured_image','0'),(2757,3199,'_elementor_page_assets','a:0:{}'),(2782,3202,'_wp_page_template','default'),(2783,3202,'_elementor_edit_mode','builder'),(2784,3202,'_elementor_template_type','wp-page'),(2785,3202,'_elementor_version','3.4.3'),(2786,3202,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2760,3199,'_edit_last','1'),(2761,3199,'body_background_color',''),(2762,3199,'_body_background_color','field_5c721ec24addf'),(2763,13,'_edit_lock','1633494378:1'),(2764,3200,'_wp_page_template','default'),(2765,3200,'_elementor_edit_mode','builder'),(2766,3200,'_elementor_template_type','wp-page'),(2767,3200,'_elementor_version','3.4.3'),(2768,3200,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2769,3200,'_elementor_page_assets','a:0:{}'),(2770,3200,'_elementor_controls_usage','a:6:{s:19:\"shadepro-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_tiem_style\";a:4:{s:33:\"breadcroumb_typography_typography\";i:1;s:32:\"breadcroumb_typography_font_size\";i:1;s:17:\"breadcroumb_color\";i:1;s:22:\"breadcroumb_link_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:9;s:12:\"border_width\";i:9;s:12:\"border_color\";i:8;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:25:\"section_advanced_gradient\";a:1:{s:24:\"shadepro_enable_gradient\";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:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";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_title\";a:2:{s:5:\"title\";i:4;s:5:\"align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;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:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}}}}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:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}}'),(2771,3200,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2772,3200,'body_background_color',''),(2773,3200,'_body_background_color','field_5c721ec24addf'),(2894,3218,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2908,3221,'_wp_page_template','default'),(2909,3221,'_elementor_edit_mode','builder'),(2910,3221,'_elementor_template_type','wp-page'),(2911,3221,'_elementor_version','3.4.3'),(2912,3221,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2889,3218,'_wp_page_template','default'),(2890,3218,'_elementor_edit_mode','builder'),(2891,3218,'_elementor_template_type','wp-page'),(2892,3218,'_elementor_version','3.4.3'),(2893,3218,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2787,3202,'_elementor_page_assets','a:0:{}'),(2788,3202,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2789,3203,'_wp_page_template','default'),(2790,3203,'_elementor_edit_mode','builder'),(2791,3203,'_elementor_template_type','wp-page'),(2792,3203,'_elementor_version','3.4.3'),(2793,3203,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Truck Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy\\/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels\\/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"86f7fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"049576c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/pexels-scosche-1149056-1.jpg\",\"id\":3137,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2794,3203,'_elementor_page_assets','a:0:{}'),(2795,3203,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2800,3204,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2801,3204,'_elementor_page_assets','a:0:{}'),(2802,3204,'_elementor_css','a:6:{s:4:\"time\";i:1633492153;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:\"\";}'),(2811,3206,'_wp_page_template','default'),(2812,3206,'_elementor_edit_mode','builder'),(2813,3206,'_elementor_template_type','wp-page'),(2814,3206,'_elementor_version','3.4.3'),(2815,3206,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2828,3208,'_elementor_page_assets','a:0:{}'),(2857,3213,'_wp_page_template','default'),(2858,3213,'_elementor_edit_mode','builder'),(2859,3213,'_elementor_template_type','wp-page'),(2860,3213,'_elementor_version','3.4.3'),(2861,3213,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a4ea1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5609abf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37a387cf\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"32bcace5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836b394\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9c1cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"177ec222\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"70986fde\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2831,3151,'_elementor_css','a:6:{s:4:\"time\";i:1633494902;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2832,3209,'_elementor_edit_mode','builder'),(2833,3209,'_elementor_template_type','section'),(2834,3209,'inline_featured_image','0'),(2835,3209,'_elementor_version','3.4.3'),(2836,3210,'_elementor_edit_mode','builder'),(2837,3210,'_elementor_template_type','section'),(2838,3210,'_elementor_version','3.4.3'),(2839,3209,'_wp_page_template','default'),(2840,3209,'_elementor_data','[{\"id\":\"3ae78605\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"64661f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2a841ac5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e3130dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e8ac4d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f20006f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2eb37d6f\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"1716e1b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0989a9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"18e3bb69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2816,3206,'_elementor_page_assets','a:0:{}'),(2817,3207,'_wp_page_template','default'),(2818,3207,'_elementor_edit_mode','builder'),(2819,3207,'_elementor_template_type','wp-page'),(2820,3207,'_elementor_version','3.4.3'),(2821,3207,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"11ef7ec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"a61df4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17c0d02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/jeep-pic-1-1.jpeg\",\"id\":3138,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2f507c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"5e4986c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jeep Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a395e9a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels\\/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46ff89d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"613aece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"e9672a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"UTV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3529537\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da7e5ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cce982a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/C48CCAE8-2.jpg\",\"id\":3139,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47439a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"af6252b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9a4b01e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/10\\/lifted-tahoe-1-1.jpeg\",\"id\":3140,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22486d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"33afbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"SUV Customizations\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c199f3a\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"editor\":\"<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel\\/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2822,3207,'_elementor_page_assets','a:0:{}'),(2841,3211,'_elementor_edit_mode','builder'),(2842,3211,'_elementor_template_type','section'),(2843,3211,'_elementor_version','3.4.3'),(2844,3211,'_wp_page_template','default'),(2845,3211,'_elementor_data','[{\"id\":\"3ae78605\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"64661f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2a841ac5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e3130dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e8ac4d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f20006f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"2eb37d6f\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"1716e1b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0989a9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"18e3bb69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2846,3209,'_elementor_page_assets','a:0:{}'),(2847,3209,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i: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:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s: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:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";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:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:2;}s:13:\"section_style\";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:1;}}}}s:9:\"icon-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:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";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:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";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: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;}}}}}'),(2874,3215,'_elementor_page_assets','a:0:{}'),(2875,3199,'_elementor_controls_usage','a:8:{s:19:\"shadepro-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_tiem_style\";a:4:{s:33:\"breadcroumb_typography_typography\";i:1;s:32:\"breadcroumb_typography_font_size\";i:1;s:17:\"breadcroumb_color\";i:1;s:22:\"breadcroumb_link_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:3;}s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;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:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:25:\"section_advanced_gradient\";a:1:{s:24:\"shadepro_enable_gradient\";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:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:5;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{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:11:\"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:\"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:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}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:9:\"icon-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:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";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:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}}'),(2873,3215,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bf3cc21\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a95c905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"16279d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13797a70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"64aac775\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a80ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"23b351a1\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"43142f3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fdd8d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"29847ad8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2869,3215,'_wp_page_template','default'),(2870,3215,'_elementor_edit_mode','builder'),(2871,3215,'_elementor_template_type','wp-page'),(2872,3215,'_elementor_version','3.4.3'),(2862,3213,'_elementor_page_assets','a:0:{}'),(2863,3214,'_wp_page_template','default'),(2864,3214,'_elementor_edit_mode','builder'),(2865,3214,'_elementor_template_type','wp-page'),(2866,3214,'_elementor_version','3.4.3'),(2867,3214,'_elementor_data','[{\"id\":\"c0c79ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#004CDB\",\"shadepro_enable_gradient\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9997478\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49fe2b2\",\"elType\":\"widget\",\"settings\":{\"separator\":\" . \",\"breadcroumb_typography_typography\":\"custom\",\"breadcroumb_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"breadcroumb_color\":\"#FFFFFF\",\"breadcroumb_link_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"shadepro-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"abde749\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3dd481b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"77c00bc\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"53ad2e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"ccfbdd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About C & C Motorsport\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99973b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.<\\/span><\\/p>\",\"text_color\":\"#969090\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a4ea1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5609abf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37a387cf\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"32bcace5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836b394\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9c1cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"177ec222\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"70986fde\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2868,3214,'_elementor_page_assets','a:0:{}'),(2876,3199,'_elementor_css','a:6:{s:4:\"time\";i:1633495170;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2882,3216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2883,3217,'_wp_page_template','page-templates/template-page-builder.php'),(2884,3217,'_elementor_edit_mode','builder'),(2885,3217,'_elementor_template_type','wp-page'),(2886,3217,'_elementor_version','3.4.3'),(2887,3217,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0bf759\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6be14f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090925b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"11cc8cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce5316\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsport today to discuss your project\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a1d840\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"044d9a8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6d6808d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2888,3217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2896,3219,'_wp_page_template','default'),(2897,3219,'_elementor_edit_mode','builder'),(2898,3219,'_elementor_template_type','wp-page'),(2899,3219,'_elementor_version','3.4.3'),(2900,3219,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2901,3219,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2902,3220,'_wp_page_template','default'),(2903,3220,'_elementor_edit_mode','builder'),(2904,3220,'_elementor_template_type','wp-page'),(2905,3220,'_elementor_version','3.4.3'),(2906,3220,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2614df\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\"},\"elements\":[{\"id\":\"1d42431\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"34f3850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5f45b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"6dff079\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2907,3220,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2913,3221,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2915,3222,'_wp_page_template','default'),(2916,3222,'_elementor_edit_mode','builder'),(2917,3222,'_elementor_template_type','wp-page'),(2918,3222,'_elementor_version','3.4.3'),(2919,3222,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2920,3222,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2921,3223,'_wp_page_template','default'),(2922,3223,'_elementor_edit_mode','builder'),(2923,3223,'_elementor_template_type','wp-page'),(2924,3223,'_elementor_version','3.4.3'),(2925,3223,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2926,3223,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2953,3227,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us to recieve a free estimate on your vehicle!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2952,3227,'_elementor_version','3.4.3'),(2951,3227,'_elementor_template_type','wp-page'),(2950,3227,'_elementor_edit_mode','builder'),(2949,3227,'_wp_page_template','default'),(2927,3224,'_wp_page_template','default'),(2928,3224,'_elementor_edit_mode','builder'),(2929,3224,'_elementor_template_type','wp-page'),(2930,3224,'_elementor_version','3.4.3'),(2931,3224,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2932,3224,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2935,3225,'_wp_page_template','default'),(2936,3225,'_elementor_edit_mode','builder'),(2937,3225,'_elementor_template_type','wp-page'),(2938,3225,'_elementor_version','3.4.3'),(2939,3225,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2956,2808,'_elementor_controls_usage','a:13:{s:17:\"slider_revolution\";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:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:27;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:3;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:2;s:15:\"animation_delay\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:2;}s:13:\"section_style\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}}}}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:6:\"layout\";i:4;s:15:\"stretch_section\";i:9;s:3:\"gap\";i:1;s:16:\"content_position\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:13;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:4;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:10;s:18:\"background_color_b\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s: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:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;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:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:4;s:5:\"align\";i:3;s:22:\"typography_line_height\";i:5;s:25:\"typography_letter_spacing\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:4;}}}}s:6:\"button\";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:\"section_button\";a:3:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:9;s:5:\"align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:9;s:22:\"typography_font_family\";i:9;s:20:\"typography_font_size\";i:9;s:22:\"typography_font_weight\";i:9;s:11:\"title_color\";i:7;s:22:\"typography_line_height\";i:6;s:25:\"typography_letter_spacing\";i:6;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:2;}s:21:\"section_style_content\";a:7:{s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:28:\"title_typography_font_family\";i:3;s:28:\"title_typography_font_weight\";i:3;s:33:\"description_typography_typography\";i:1;s:34:\"description_typography_font_family\";i:1;s:34:\"description_typography_font_weight\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:4:\"link\";i:4;}}s:5:\"style\";a:3:{s:19:\"section_style_image\";a:3:{s:10:\"image_size\";i:4;s:15:\"hover_animation\";i:4;s:19:\"image_border_radius\";i:4;}s:21:\"section_style_content\";a:6:{s:17:\"description_color\";i:4;s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;}s:13:\"section_extra\";a:1:{s:34:\"image_hover_shadow_box_shadow_type\";i:1;}}}}s:12:\"shadepro-btn\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:6:\"button\";a:3:{s:12:\"button_label\";i:4;s:4:\"icon\";i:4;s:10:\"button_url\";i:4;}}s:5:\"style\";a:2:{s:10:\"icon_style\";a:2:{s:8:\"icon_gap\";i:4;s:10:\"icon_color\";i:4;}s:12:\"button_style\";a:11:{s:20:\"button_border_border\";i:4;s:19:\"button_border_width\";i:4;s:29:\"heading_typography_typography\";i:4;s:30:\"heading_typography_font_family\";i:4;s:28:\"heading_typography_font_size\";i:4;s:30:\"heading_typography_font_weight\";i:4;s:30:\"heading_typography_line_height\";i:4;s:33:\"heading_typography_letter_spacing\";i:4;s:19:\"button_border_color\";i:4;s:16:\"inline_btn_color\";i:4;s:15:\"btn_hover_color\";i:4;}}}}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:9:\"icon-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:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";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:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:20:\"shadepro-testimonial\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:17:\"testimonial_style\";i:2;s:5:\"image\";i:2;s:4:\"name\";i:2;s:5:\"title\";i:2;s:11:\"description\";i:2;}}s:5:\"style\";a:1:{s:9:\"box_style\";a:1:{s:14:\"box_background\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;s:14:\"_border_radius\";i:2;}}}}}'),(2940,3225,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2941,3225,'_elementor_css','a:6:{s:4:\"time\";i:1633495443;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:8;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2942,3226,'_wp_page_template','default'),(2943,3226,'_elementor_edit_mode','builder'),(2944,3226,'_elementor_template_type','wp-page'),(2945,3226,'_elementor_version','3.4.3'),(2946,3226,'_elementor_data','[{\"id\":\"a000758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"222aa5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c859f0\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71a2d96\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#5D5D5D\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F4CC01\"},\"elements\":[{\"id\":\"feef3f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2dbbd67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Contact C &amp; C Motorsport Today to discuss your buildout!<\\/span><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b33c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"032e272\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60d9134\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5147be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b0c480\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20200912_164715_198-1.jpg\",\"id\":3043,\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc7c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f34ea1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to C & C Motorsport!\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"088cf15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out.\\u00a0<\\/p>\",\"text_color\":\"#363636\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"align\":\"center\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c9b7eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started Today\",\"align\":\"center\",\"size\":\"lg\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#0276F4\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#0276F4\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_color\":\"#0276F4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9257ece\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2966e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8c019a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The C & C Motorsport Difference!\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a3a6a8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff7f7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"bc633c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Integrity\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"af662f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_delay\":200},\"elements\":[{\"id\":\"a0ca87f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Reliability\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"primary_color\":\"#0277D3\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"b962478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"e826acb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Quality Service\",\"description_text\":\"\",\"selected_icon\":{\"value\":\"fas fa-handshake\",\"library\":\"fa-solid\"},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e17f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#171717\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\",\"background_color_b\":\"#051C30\"},\"elements\":[{\"id\":\"6414f09\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96fe8c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"270\",\"bottom\":\"10\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"246de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbdf5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Proudly Servicing Your Offroad Vehicles and UTV\'s\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef03fc3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C today to discuss your buildout\",\"align\":\"center\",\"title_color\":\"#F4CC01\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34f542f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\"},\"elements\":[{\"id\":\"4a1b807\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0bd6fb3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-09-at-9.20.53-AM.png\",\"id\":2917,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"UTV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_hover_shadow_box_shadow_type\":\"yes\",\"title_color\":\"#0277D3\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"982335c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"285f60d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.37.39-PM.png\",\"id\":2918,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Truck Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"fb17ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7dd1cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-10-at-1.27.40-PM.png\",\"id\":2919,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Jeep Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"a7e686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d2a781d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/lifted-tahoe-1.jpeg\",\"id\":2920,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"SUV Customizations\",\"description_text\":\"Get Started Today\",\"link\":{\"url\":\"\\/our-services\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"hover_animation\":\"grow\",\"description_color\":\"#F4CC01\",\"image_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e12d23\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a712a93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"a9839ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suspension Systems\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5b34c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cc45c6f\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"cb47253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"e2a6429\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20201230_220709_461-1.jpg\",\"id\":2995,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c86b958\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"08f52a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/IMG_20210118_214223_577-1.jpg\",\"id\":2997,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43cc235\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"df9480a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wheels and Tires\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cced22a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle.\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ac3d29\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6f358d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b34e9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"8b3273b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exterior Lighting\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60c7c4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8861436\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false},{\"id\":\"bfc4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"b966d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/jeep-lighting-2.jpeg\",\"id\":2999,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cd0fa4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F4F7FA\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bfdf32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.3119999999999976125764078460633754730224609375,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"5a16c00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_145529-1-1.jpg\",\"id\":3000,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6bdd0cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.52600000000000335376171278767287731170654296875,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"e50cc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Kits and Accessories\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"title_color\":\"#161C2D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.3329999999999999626965063725947402417659759521484375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e4873ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\"},\"text_color\":\"#4B4B4B\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Circular Std\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6842099999999999848654397283098660409450531005859375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c8ba2e\",\"elType\":\"widget\",\"settings\":{\"button_label\":\"Get Started Today\",\"icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"icon_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_color\":\"#0277D3\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"heading_typography_typography\":\"\",\"icon_color\":\"\",\"button_border_color\":\"\",\"inline_btn_color\":\"\"},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Circular Std\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"heading_typography_font_weight\":\"700\",\"heading_typography_line_height\":{\"unit\":\"em\",\"size\":1.523800000000000043343106881366111338138580322265625,\"sizes\":[]},\"heading_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"button_border_color\":\"#0277D3\",\"inline_btn_color\":\"#0277D3\",\"button_url\":{\"url\":\"\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"shadepro-btn\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54a207b3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"511ced1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color\":\"#282828\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color_b\":\"#022C51\"},\"elements\":[{\"id\":\"2abba8fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact C & C Motorsports\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a35d217\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e16fb0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2f61efc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\"},\"elements\":[{\"id\":\"28b7275b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/212526185812050\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"148b87df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#0390FF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1269d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c1cb535\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b31c3bc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"7e5148c\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#ECD103\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#F3EFEF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5eb34e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/20210113_135831-scaled.jpg\",\"id\":2982,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90c4606\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000FC\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ-scaled.jpg\",\"id\":3005,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7199999999999999733546474089962430298328399658203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7788\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF7A\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"31f8663\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"John M.\",\"title\":\"Client\",\"description\":\"\\u201cC & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\\\"\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false},{\"id\":\"8507732\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF78\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"9a3319b\",\"elType\":\"widget\",\"settings\":{\"testimonial_style\":\"style-two\",\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/istockphoto-1265517611-612x612-1.jpeg\",\"id\":2838,\"alt\":\"\",\"source\":\"library\"},\"name\":\"Thomas S.\",\"title\":\"Client\",\"description\":\"\\u201cThese guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!\",\"box_background\":\"#FFFFFF57\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#0490FF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"shadepro-testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(2947,3226,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2948,3226,'_elementor_css','a:6:{s:4:\"time\";i:1633495443;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:8;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2954,3227,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(2955,3227,'_elementor_css','a:6:{s:4:\"time\";i:1633495443;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:8;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2957,2808,'_elementor_css','a:6:{s:4:\"time\";i:1633495558;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:8;s:12:\"Circular Std\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2963,3228,'_elementor_page_assets','a:0:{}'),(2964,3228,'_elementor_css','a:6:{s:4:\"time\";i:1633493922;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2965,3229,'_wp_page_template','default'),(2966,3229,'_elementor_edit_mode','builder'),(2967,3229,'_elementor_template_type','wp-post'),(2968,3229,'_elementor_version','3.4.3'),(2969,3229,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Freee Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/candc117.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2970,3229,'_elementor_page_assets','a:0:{}'),(2971,3229,'_elementor_css','a:6:{s:4:\"time\";i:1633493922;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2972,3230,'_wp_page_template','default'),(2973,3230,'_elementor_edit_mode','builder'),(2974,3230,'_elementor_template_type','wp-post'),(2975,3230,'_elementor_version','3.4.3'),(2976,3230,'_elementor_data','[{\"id\":\"55d451c\",\"elType\":\"section\",\"settings\":{\"structure\":\"32\",\"background_background\":\"classic\",\"background_color\":\"#0464FC\"},\"elements\":[{\"id\":\"6fd6532\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.85799999999999698729880037717521190643310546875},\"elements\":[{\"id\":\"c3d4b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a Free Estimate!\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2f8e982\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":18.047999999999998266275724745355546474456787109375},\"elements\":[{\"id\":\"45483e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"tel:425-772-7485\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5e62443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.056999999999998607336237910203635692596435546875},\"elements\":[{\"id\":\"ee91b47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Email: info@candcmotorsport.com\",\"_id\":\"6f9f0cc\",\"link\":{\"url\":\"mailto: info@candcmotorsport.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#EFCD01\",\"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\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d390ce\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed8c9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ef8ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"80\"},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/candc117.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a6d6c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"00c8fa5\",\"elType\":\"widget\",\"settings\":{\"primary_menu\":\"main-updated-1\",\"menu_align\":\"start\",\"menu_color\":\"#FFFFFF\",\"menu_hover_color\":\"#EFCD01\"},\"elements\":[],\"widgetType\":\"shadepro-main-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(2977,3230,'_elementor_page_assets','a:0:{}'),(2978,3230,'_elementor_css','a:6:{s:4:\"time\";i:1633493922;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2980,2811,'_elementor_css','a:6:{s:4:\"time\";i:1633495603;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2987,3232,'_elementor_page_assets','a:0:{}'),(2988,3232,'_elementor_css','a:6:{s:4:\"time\";i:1631557193;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2989,3233,'_wp_page_template','default'),(2990,3233,'_elementor_edit_mode','builder'),(2991,3233,'_elementor_template_type','wp-post'),(2992,3233,'_elementor_version','3.4.3'),(2993,3233,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Smokey Point, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2994,3233,'_elementor_page_assets','a:0:{}'),(2995,3233,'_elementor_css','a:6:{s:4:\"time\";i:1631557193;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(2996,3234,'_wp_page_template','default'),(2997,3234,'_elementor_edit_mode','builder'),(2998,3234,'_elementor_template_type','wp-post'),(2999,3234,'_elementor_version','3.4.3'),(3000,3234,'_elementor_data','[{\"id\":\"0d5877e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D3B601\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f71135\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.71000000000000085265128291212022304534912109375},\"elements\":[{\"id\":\"9da7684\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/Screen-Shot-2021-09-13-at-11.04.03-AM.png\",\"id\":3107,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66b3106\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We are the Pacific Northwest\\u2019s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88b7b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.178999999999998493649400188587605953216552734375},\"elements\":[{\"id\":\"05189fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8613439\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call: 425-772-7485\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"b38eecf\"},{\"text\":\"Email: info@candcmotorsport.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"ad44f93\"},{\"text\":\"Everett, WA\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"d4cae59\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#D3B601\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56c9efa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.178000000000000824229573481716215610504150390625},\"elements\":[{\"id\":\"6e23097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bb0f6\",\"elType\":\"widget\",\"settings\":{\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"menu_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"shadepro-vertical-menu\"}],\"isInner\":false},{\"id\":\"4879fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":24.93299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"58fae32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Browsing:\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9732fe1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/ssl3.png\",\"id\":3088,\"alt\":\"\",\"source\":\"library\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8b36e8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b065a66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dea1554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Copyright 2021, C and C Motorsport. All Rights Reserved.<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3001,3234,'_elementor_page_assets','a:0:{}'),(3002,3234,'_elementor_css','a:6:{s:4:\"time\";i:1631557193;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}'),(3004,3065,'_elementor_css','a:6:{s:4:\"time\";i:1634688105;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}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:\"\";}');
/*!40000 ALTER TABLE `wp9l_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_posts`
--

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

--
-- Dumping data for table `wp9l_posts`
--

LOCK TABLES `wp9l_posts` WRITE;
/*!40000 ALTER TABLE `wp9l_posts` DISABLE KEYS */;
INSERT INTO `wp9l_posts` VALUES (1,1,'2021-09-09 02:20:35','2021-09-09 02:20:35','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2021-09-09 02:20:35','2021-09-09 02:20:35','',0,'https://candc117.dev34.info/?p=1',0,'post','',1),(2,1,'2021-09-09 02:20:35','2021-09-09 02:20:35','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','Our Services','','publish','closed','open','','our-services','','','2021-10-06 03:49:23','2021-10-06 03:49:23','',0,'https://candc117.dev34.info/?page_id=2',0,'page','',0),(3,1,'2021-09-09 02:20:35','2021-09-09 02:20:35','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://candc117.dev34.info.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-09-09 02:20:35','2021-09-09 02:20:35','',0,'https://candc117.dev34.info/?page_id=3',0,'page','',0),(6,1,'2021-09-09 15:34:33','2021-09-09 15:34:33','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@candc117.dev34.info>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@candc117.dev34.info>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\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.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2021-09-09 15:34:33','2021-09-09 15:34:33','',0,'https://candc117.dev34.info/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),(7,1,'2021-09-09 15:34:33','2021-09-09 15:34:33','','Default Kit','','publish','closed','closed','','default-kit','','','2021-09-09 15:49:21','2021-09-09 15:49:21','',0,'https://candc117.dev34.info/?p=7',0,'elementor_library','',0),(8,1,'2021-09-09 15:34:35','2021-09-09 15:34:35','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-09-09 15:34:35','2021-09-09 15:34:35','',0,'https://candc117.dev34.info/wp-content/uploads/2021/09/woocommerce-placeholder.png',0,'attachment','image/png',0),(9,1,'2021-09-09 15:34:36','2021-09-09 15:34:36','','Shop','','publish','closed','closed','','shop','','','2021-09-09 15:34:36','2021-09-09 15:34:36','',0,'https://candc117.dev34.info/shop/',0,'page','',0),(10,1,'2021-09-09 15:34:36','2021-09-09 15:34:36','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2021-09-09 15:34:36','2021-09-09 15:34:36','',0,'https://candc117.dev34.info/cart/',0,'page','',0),(11,1,'2021-09-09 15:34:36','2021-09-09 15:34:36','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2021-09-09 15:34:36','2021-09-09 15:34:36','',0,'https://candc117.dev34.info/checkout/',0,'page','',0),(12,1,'2021-09-09 15:34:36','2021-09-09 15:34:36','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2021-09-09 15:34:36','2021-09-09 15:34:36','',0,'https://candc117.dev34.info/my-account/',0,'page','',0),(13,1,'2021-09-09 15:34:36','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h3>Overview</h3>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<h2>Refunds</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Late or missing refunds</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Sale items</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Exchanges</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Gifts</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Shipping returns</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To return your product, you should mail your product to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on where you live, the time it may take for your exchanged product to reach you may vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Need help?</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us at {email} for questions related to refunds and returns.</p>\n<!-- /wp:paragraph -->','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2021-09-09 15:34:36','0000-00-00 00:00:00','',0,'https://candc117.dev34.info/?page_id=13',0,'page','',0),(14,1,'2021-09-09 15:47:16','2021-09-09 15:47:16','','One Click Demo Import - log_file_2021-09-09__15-47-16','','inherit','open','closed','','one-click-demo-import-log_file_2021-09-09__15-47-16','','','2021-09-09 15:47:16','2021-09-09 15:47:16','',0,'https://candc117.dev34.info/wp-content/uploads/2021/09/log_file_2021-09-09__15-47-16.txt',0,'attachment','text/plain',0),(2808,1,'2020-09-14 13:44:19','2020-09-14 13:44:19','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Contact us to recieve a free estimate on your vehicle!</p>		\n		<p style=\"text-align: left;\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','publish','closed','closed','','web-application','','','2021-10-06 04:45:55','2021-10-06 04:45:55','',0,'https://finestdevs.com/demos/wp/shadepro/?page_id=2808',0,'page','',0),(2866,1,'2021-09-10 05:10:08','2021-09-10 05:10:08','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:10:08','2021-09-10 05:10:08','',2808,'https://candc117.dev34.info/?p=2866',0,'revision','',0),(2867,1,'2021-09-10 05:13:10','2021-09-10 05:13:10','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:13:10','2021-09-10 05:13:10','',2808,'https://candc117.dev34.info/?p=2867',0,'revision','',0),(2868,1,'2021-09-10 05:13:10','2021-09-10 05:13:10','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommend them to anyone!\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:13:10','2021-09-10 05:13:10','',2808,'https://candc117.dev34.info/?p=2868',0,'revision','',0),(2809,1,'2021-09-09 15:48:41','2021-09-09 15:48:41','','Default Kit','','inherit','closed','closed','','7-revision-v1','','','2021-09-09 15:48:41','2021-09-09 15:48:41','',7,'https://candc117.dev34.info/?p=2809',0,'revision','',0),(2810,1,'2021-09-09 15:48:41','2021-09-09 15:48:41','','Default Kit','','inherit','closed','closed','','7-revision-v1','','','2021-09-09 15:48:41','2021-09-09 15:48:41','',7,'https://candc117.dev34.info/?p=2810',0,'revision','',0),(2811,1,'2021-09-09 15:52:03','2021-09-09 15:52:03','<h2>Contact us today for a Free Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n																<a href=\"https://candc117.dev34.info\">\n							<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />								</a>\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"https://candc117.dev34.info/our-services\">Our Services</a></li>\n<li id=\"menu-item-2892\"><a href=\"https://candc117.dev34.info/about-us/\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"https://candc117.dev34.info/contact-us/\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','publish','closed','closed','','header-custom-1','','','2021-10-06 04:46:36','2021-10-06 04:46:36','',0,'https://candc117.dev34.info/?post_type=shadepro_header&#038;p=2811',0,'shadepro_header','',0),(2812,1,'2021-09-09 15:52:03','2021-09-09 15:52:03','','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 15:52:03','2021-09-09 15:52:03','',2811,'https://candc117.dev34.info/?p=2812',0,'revision','',0),(2816,1,'2021-09-09 15:56:45','2021-09-09 15:56:45','<p><strong>Contact us today for a Free Estimate!</strong></p>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 15:56:45','2021-09-09 15:56:45','',2811,'https://candc117.dev34.info/?p=2816',0,'revision','',0),(2814,1,'2021-09-09 15:56:45','2021-09-09 15:56:45','','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 15:56:45','2021-09-09 15:56:45','',2811,'https://candc117.dev34.info/?p=2814',0,'revision','',0),(2815,1,'2021-09-09 15:56:45','2021-09-09 15:56:45','','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 15:56:45','2021-09-09 15:56:45','',2811,'https://candc117.dev34.info/?p=2815',0,'revision','',0),(2817,1,'2021-09-09 15:58:23','2021-09-09 15:58:23','<p><strong>Contact us today for a Free Estimate!</strong></p>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 15:58:23','2021-09-09 15:58:23','',2811,'https://candc117.dev34.info/?p=2817',0,'revision','',0),(2818,1,'2021-09-09 15:58:24','2021-09-09 15:58:24','<p><strong>Contact us today for a Free Estimate!</strong></p>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 15:58:24','2021-09-09 15:58:24','',2811,'https://candc117.dev34.info/?p=2818',0,'revision','',0),(2819,1,'2021-09-09 15:58:24','2021-09-09 15:58:24','<p><strong>Contact us today for a Free Estimate!</strong></p>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 15:58:24','2021-09-09 15:58:24','',2811,'https://candc117.dev34.info/?p=2819',0,'revision','',0),(2820,1,'2021-09-09 16:01:37','2021-09-09 16:01:37','<p><strong>Contact us today for a Free Estimate!</strong></p>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:01:37','2021-09-09 16:01:37','',2811,'https://candc117.dev34.info/?p=2820',0,'revision','',0),(2821,1,'2021-09-09 16:01:37','2021-09-09 16:01:37','<p><strong>Contact us today for a Free Estimate!</strong></p>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:01:37','2021-09-09 16:01:37','',2811,'https://candc117.dev34.info/?p=2821',0,'revision','',0),(2822,1,'2021-09-09 16:01:38','2021-09-09 16:01:38','<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:01:38','2021-09-09 16:01:38','',2811,'https://candc117.dev34.info/?p=2822',0,'revision','',0),(2823,1,'2021-09-09 16:02:27','2021-09-09 16:02:27','<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:02:27','2021-09-09 16:02:27','',2811,'https://candc117.dev34.info/?p=2823',0,'revision','',0),(2824,1,'2021-09-09 16:02:27','2021-09-09 16:02:27','<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:02:27','2021-09-09 16:02:27','',2811,'https://candc117.dev34.info/?p=2824',0,'revision','',0),(2825,1,'2021-09-09 16:02:27','2021-09-09 16:02:27','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:02:27','2021-09-09 16:02:27','',2811,'https://candc117.dev34.info/?p=2825',0,'revision','',0),(2826,1,'2021-09-09 16:03:02','2021-09-09 16:03:02','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:03:02','2021-09-09 16:03:02','',2811,'https://candc117.dev34.info/?p=2826',0,'revision','',0),(2827,1,'2021-09-09 16:03:02','2021-09-09 16:03:02','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:03:02','2021-09-09 16:03:02','',2811,'https://candc117.dev34.info/?p=2827',0,'revision','',0),(2828,1,'2021-09-09 16:03:02','2021-09-09 16:03:02','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:03:02','2021-09-09 16:03:02','',2811,'https://candc117.dev34.info/?p=2828',0,'revision','',0),(2829,1,'2021-09-09 16:03:50','2021-09-09 16:03:50','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:03:50','2021-09-09 16:03:50','',2811,'https://candc117.dev34.info/?p=2829',0,'revision','',0),(2830,1,'2021-09-09 16:03:50','2021-09-09 16:03:50','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:03:50','2021-09-09 16:03:50','',2811,'https://candc117.dev34.info/?p=2830',0,'revision','',0),(2831,1,'2021-09-09 16:03:50','2021-09-09 16:03:50','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img src=\"https://candc117.dev34.info/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:03:50','2021-09-09 16:03:50','',2811,'https://candc117.dev34.info/?p=2831',0,'revision','',0),(2832,1,'2021-09-09 16:05:20','2021-09-09 16:05:20','','Screen Shot 2021-09-09 at 9.04.34 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-04-34-am','','','2021-09-09 16:05:20','2021-09-09 16:05:20','',2811,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png',0,'attachment','image/png',0),(2833,1,'2021-09-09 16:05:30','2021-09-09 16:05:30','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img src=\"https://candc117.dev34.info/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:05:30','2021-09-09 16:05:30','',2811,'https://candc117.dev34.info/?p=2833',0,'revision','',0),(2834,1,'2021-09-09 16:05:30','2021-09-09 16:05:30','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img src=\"https://candc117.dev34.info/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:05:30','2021-09-09 16:05:30','',2811,'https://candc117.dev34.info/?p=2834',0,'revision','',0),(2836,1,'2021-09-09 16:15:48','2021-09-09 16:15:48','<h2>Contact us today for a Freee Estimate!</h2>\r\n<ul>\r\n 	<li><a href=\"tel:425-772-7485\">\r\nCall: 425-772-7485\r\n</a></li>\r\n</ul>\r\n<ul>\r\n 	<li><a href=\"mailto:%20info@candcmotorsport.com\">\r\nEmail: info@candcmotorsport.com\r\n</a></li>\r\n</ul>\r\n<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" sizes=\"(max-width: 676px) 100vw, 676px\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" alt=\"\" width=\"676\" height=\"150\" />','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:15:48','2021-09-09 16:15:48','',2811,'https://candc117.dev34.info/?p=2836',0,'revision','',0),(2835,1,'2021-09-09 16:05:30','2021-09-09 16:05:30','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-09 16:05:30','2021-09-09 16:05:30','',2811,'https://candc117.dev34.info/?p=2835',0,'revision','',0),(2841,1,'2021-09-09 16:31:42','2021-09-09 16:31:42','','Red buggy rushes through the field in the dust','Red buggy rushes through the field in the dust. The concept of speed of power and freedom.','inherit','open','closed','','red-buggy-rushes-through-the-field-in-the-dust','','','2021-09-09 16:31:42','2021-09-09 16:31:42','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1.jpg',0,'attachment','image/jpeg',0),(2853,1,'2021-09-09 16:44:12','2021-09-09 16:44:12','','Screen Shot 2021-09-09 at 9.43.49 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-43-49-am','','','2021-09-09 16:44:12','2021-09-09 16:44:12','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.43.49-AM.png',0,'attachment','image/png',0),(2843,1,'2021-09-09 16:33:15','2021-09-09 16:33:15','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:33:15','2021-09-09 16:33:15','',2808,'https://candc117.dev34.info/?p=2843',0,'revision','',0),(2838,1,'2021-09-09 16:26:00','2021-09-09 16:26:00','','100% quality guarantee like and 5 stars badge black and gold color.','100% quality guarantee like and 5 stars badge black and gold color.','inherit','open','closed','','100-quality-guarantee-like-and-5-stars-badge-black-and-gold-color','','','2021-09-09 16:26:00','2021-09-09 16:26:00','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg',0,'attachment','image/jpeg',0),(2839,1,'2021-09-09 16:28:30','2021-09-09 16:28:30','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:28:30','2021-09-09 16:28:30','',2808,'https://candc117.dev34.info/?p=2839',0,'revision','',0),(2840,1,'2021-09-09 16:28:30','2021-09-09 16:28:30','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:28:30','2021-09-09 16:28:30','',2808,'https://candc117.dev34.info/?p=2840',0,'revision','',0),(2844,1,'2021-09-09 16:33:15','2021-09-09 16:33:15','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:33:15','2021-09-09 16:33:15','',2808,'https://candc117.dev34.info/?p=2844',0,'revision','',0),(2846,1,'2021-09-09 16:37:12','2021-09-09 16:37:12','','Screen Shot 2021-09-09 at 9.35.14 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-35-14-am','','','2021-09-09 16:37:12','2021-09-09 16:37:12','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.35.14-AM.png',0,'attachment','image/png',0),(2847,1,'2021-09-09 16:37:28','2021-09-09 16:37:28','','Screen Shot 2021-09-09 at 9.35.28 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-35-28-am','','','2021-09-09 16:37:28','2021-09-09 16:37:28','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.35.28-AM.png',0,'attachment','image/png',0),(2848,1,'2021-09-09 16:37:45','2021-09-09 16:37:45','','Screen Shot 2021-09-09 at 9.36.05 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-36-05-am','','','2021-09-09 16:37:45','2021-09-09 16:37:45','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.36.05-AM.png',0,'attachment','image/png',0),(2849,1,'2021-09-09 16:40:13','2021-09-09 16:40:13','','Screen Shot 2021-09-09 at 9.38.39 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-38-39-am','','','2021-09-09 16:40:13','2021-09-09 16:40:13','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.38.39-AM.png',0,'attachment','image/png',0),(2850,1,'2021-09-09 16:40:56','2021-09-09 16:40:56','','Screen Shot 2021-09-09 at 9.39.49 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-39-49-am','','','2021-09-09 16:40:56','2021-09-09 16:40:56','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.39.49-AM.png',0,'attachment','image/png',0),(2851,1,'2021-09-09 16:42:40','2021-09-09 16:42:40','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:42:40','2021-09-09 16:42:40','',2808,'https://candc117.dev34.info/?p=2851',0,'revision','',0),(2852,1,'2021-09-09 16:42:40','2021-09-09 16:42:40','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:42:40','2021-09-09 16:42:40','',2808,'https://candc117.dev34.info/?p=2852',0,'revision','',0),(2854,1,'2021-09-09 16:46:21','2021-09-09 16:46:21','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:46:21','2021-09-09 16:46:21','',2808,'https://candc117.dev34.info/?p=2854',0,'revision','',0),(2855,1,'2021-09-09 16:46:21','2021-09-09 16:46:21','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:46:21','2021-09-09 16:46:21','',2808,'https://candc117.dev34.info/?p=2855',0,'revision','',0),(2856,1,'2021-09-09 16:46:48','2021-09-09 16:46:48','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:46:48','2021-09-09 16:46:48','',2808,'https://candc117.dev34.info/?p=2856',0,'revision','',0),(2857,1,'2021-09-09 16:46:48','2021-09-09 16:46:48','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:46:48','2021-09-09 16:46:48','',2808,'https://candc117.dev34.info/?p=2857',0,'revision','',0),(2858,1,'2021-09-09 16:50:14','2021-09-09 16:50:14','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:50:14','2021-09-09 16:50:14','',2808,'https://candc117.dev34.info/?p=2858',0,'revision','',0),(2859,1,'2021-09-09 16:50:14','2021-09-09 16:50:14','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:50:14','2021-09-09 16:50:14','',2808,'https://candc117.dev34.info/?p=2859',0,'revision','',0),(2860,1,'2021-09-09 16:51:12','2021-09-09 16:51:12','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:51:12','2021-09-09 16:51:12','',2808,'https://candc117.dev34.info/?p=2860',0,'revision','',0),(2861,1,'2021-09-09 16:51:12','2021-09-09 16:51:12','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-09 16:51:12','2021-09-09 16:51:12','',2808,'https://candc117.dev34.info/?p=2861',0,'revision','',0),(2862,1,'2021-09-09 16:52:01','2021-09-09 16:52:01','','Screen Shot 2021-09-09 at 9.22.02 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-22-02-am','','','2021-09-09 16:52:01','2021-09-09 16:52:01','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png',0,'attachment','image/png',0),(2869,1,'2021-09-10 05:13:10','2021-09-10 05:13:10','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:13:10','2021-09-10 05:13:10','',2808,'https://candc117.dev34.info/?p=2869',0,'revision','',0),(2870,1,'2021-09-10 05:14:04','2021-09-10 05:14:04','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:14:04','2021-09-10 05:14:04','',2808,'https://candc117.dev34.info/?p=2870',0,'revision','',0),(2864,1,'2021-09-10 05:10:08','2021-09-10 05:10:08','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:10:08','2021-09-10 05:10:08','',2808,'https://candc117.dev34.info/?p=2864',0,'revision','',0),(2865,1,'2021-09-10 05:10:08','2021-09-10 05:10:08','<a href=\"https://finestdevs.com/demos/wp/shadepro\">\r\n                <img src=\"//finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-white.svg\" alt=\"shadepro\">            </a>\r\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n            </button>\r\n            <!-- end of Nav toggler -->\r\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\r\n                </button>\r\n                <nav id=\"site-navigation\">\r\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-5003\"><a>Demos</a>\r\n<ul>\r\n	<li id=\"menu-item-12772\"><a href=\"#\">New Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5802\"><a href=\"https://finestdevs.com/demos/wp/shadepro/\">Digital Marketing new</a></li>\r\n		<li id=\"menu-item-8653\"><a href=\"https://finestdevs.com/demos/wp/shadepro/education/\">Online Education new</a></li>\r\n		<li id=\"menu-item-8933\"><a href=\"https://finestdevs.com/demos/wp/shadepro/event/\">Tech Event new</a></li>\r\n		<li id=\"menu-item-8167\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ebook/\">eBook Landing new</a></li>\r\n		<li id=\"menu-item-7532\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app-3/\">Mobile App 3.0 new</a></li>\r\n		<li id=\"menu-item-8166\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team-management/\">Team Management new</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13028\"><a href=\"#\">SaaS Landings</a>\r\n	<ul>\r\n		<li id=\"menu-item-7533\"><a href=\"https://finestdevs.com/demos/wp/shadepro/social-app/\">Social App</a></li>\r\n		<li id=\"menu-item-6194\"><a href=\"https://finestdevs.com/demos/wp/shadepro/chat-service/\">Chat Service</a></li>\r\n		<li id=\"menu-item-6195\"><a href=\"https://finestdevs.com/demos/wp/shadepro/digital-service/\">Digital Service</a></li>\r\n		<li id=\"menu-item-6713\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-service/\">SasS Service</a></li>\r\n		<li id=\"menu-item-5009\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-site/\">Job Directory</a></li>\r\n		<li id=\"menu-item-5001\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sass-subscription/\">Sass Subscription</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12773\"><a href=\"#\">Apps &#038; Software</a>\r\n	<ul>\r\n		<li id=\"menu-item-7702\"><a href=\"https://finestdevs.com/demos/wp/shadepro/software/\">Software</a></li>\r\n		<li id=\"menu-item-6349\"><a href=\"https://finestdevs.com/demos/wp/shadepro/app/\">IOS App</a></li>\r\n		<li id=\"menu-item-5005\"><a href=\"https://finestdevs.com/demos/wp/shadepro/web-application/\">Web Application</a></li>\r\n		<li id=\"menu-item-8165\"><a href=\"https://finestdevs.com/demos/wp/shadepro/desktop-software/\">Desktop Software</a></li>\r\n		<li id=\"menu-item-5008\"><a href=\"https://finestdevs.com/demos/wp/shadepro/mobile-app/\">Mobile App</a></li>\r\n		<li id=\"menu-item-5012\"><a href=\"https://finestdevs.com/demos/wp/shadepro/product-landing/\">Product Landing</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-13035\"><a href=\"#\">General Services</a>\r\n	<ul>\r\n		<li id=\"menu-item-5002\"><a href=\"https://finestdevs.com/demos/wp/shadepro/video-conference/\">Video Conference</a></li>\r\n		<li id=\"menu-item-5262\"><a href=\"https://finestdevs.com/demos/wp/shadepro/agency\">Agency</a></li>\r\n		<li id=\"menu-item-5011\"><a href=\"https://finestdevs.com/demos/wp/shadepro/telemedicine/\">Telemedicine</a></li>\r\n		<li id=\"menu-item-5004\"><a href=\"https://finestdevs.com/demos/wp/shadepro/ecommerce/\">ECommerce</a></li>\r\n		<li id=\"menu-item-5010\"><a href=\"https://finestdevs.com/demos/wp/shadepro/coworking/\">Coworking</a></li>\r\n		<li id=\"menu-item-5006\"><a href=\"https://finestdevs.com/demos/wp/shadepro/consultation/\">Consultation</a></li>\r\n		<li id=\"menu-item-5007\"><a href=\"https://finestdevs.com/demos/wp/shadepro/b2b/\">B2B</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4997\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n<li id=\"menu-item-12726\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/\">Portfolio</a>\r\n<ul>\r\n	<li id=\"menu-item-12730\"><a href=\"#\">Gallery Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12755\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12735\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12743\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12753\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12737\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12745\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12758\"><a href=\"#\">Classic Grid Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12756\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-in-container-cno-gap/\">Two Column Grid</a></li>\r\n		<li id=\"menu-item-12736\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-container-no-gap/\">Three Column Grid</a></li>\r\n		<li id=\"menu-item-12744\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-container-no-gap/\">Four Column Grid</a></li>\r\n		<li id=\"menu-item-12754\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-grid-2-full-no-gap/\">Two Column Wide</a></li>\r\n		<li id=\"menu-item-12738\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-grid-full-no-gap/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12746\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-grid-full-no-gap/\">Four Column Wide</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12759\"><a href=\"#\">Masonry Style</a>\r\n	<ul>\r\n		<li id=\"menu-item-12741\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container/\">Three Column in Grid</a></li>\r\n		<li id=\"menu-item-12749\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container/\">Four Column in Grid</a></li>\r\n		<li id=\"menu-item-12739\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-full/\">Three Column Wide</a></li>\r\n		<li id=\"menu-item-12747\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-full/\">Four Column Wide</a></li>\r\n		<li id=\"menu-item-12742\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-3-masonry-in-container-no-gap/\">Three Column Classic</a></li>\r\n		<li id=\"menu-item-12750\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio-4-masonry-in-container-no-gap/\">Four Column Classic</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-12760\"><a href=\"#\">Single Project</a>\r\n	<ul>\r\n		<li id=\"menu-item-12761\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/agricultural-processing/\">Project Style 01</a></li>\r\n		<li id=\"menu-item-12762\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/decode-branding/\">Project Style 02</a></li>\r\n		<li id=\"menu-item-12763\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/griffe-velta/\">Project Style 03</a></li>\r\n		<li id=\"menu-item-12764\"><a href=\"https://finestdevs.com/demos/wp/shadepro/portfolio/exones-website/\">Project Style 04</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4998\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog\">Pages</a>\r\n<ul>\r\n	<li id=\"menu-item-5032\"><a href=\"#\">About Us</a>\r\n	<ul>\r\n		<li id=\"menu-item-5033\"><a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">About Us</a></li>\r\n		<li id=\"menu-item-5034\"><a href=\"https://finestdevs.com/demos/wp/shadepro/team/jason-reed/\">Team Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5021\"><a href=\"#\">Career</a>\r\n	<ul>\r\n		<li id=\"menu-item-5020\"><a href=\"https://finestdevs.com/demos/wp/shadepro/job-opening/\">Job Opening</a></li>\r\n		<li id=\"menu-item-5022\"><a href=\"https://finestdevs.com/demos/wp/shadepro/jobs/senior-software-engineer/\">Job Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5000\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">Blog</a>\r\n	<ul>\r\n		<li id=\"menu-item-5369\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-1/\">Blog Style 1</a></li>\r\n		<li id=\"menu-item-5351\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-2/\">Blog Style 2</a></li>\r\n		<li id=\"menu-item-5386\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-3/\">Blog Style 3</a></li>\r\n		<li id=\"menu-item-5350\"><a href=\"https://finestdevs.com/demos/wp/shadepro/blog-style-4/\">Blog Style 4</a></li>\r\n		<li id=\"menu-item-5031\"><a href=\"https://finestdevs.com/demos/wp/shadepro/design-studios-that-everyone-should-know-about/\">Blog Details</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5023\"><a href=\"#\">eCommerce</a>\r\n	<ul>\r\n		<li id=\"menu-item-5024\"><a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">Shop</a></li>\r\n		<li id=\"menu-item-5025\"><a href=\"https://finestdevs.com/demos/wp/shadepro/cart/\">Cart</a></li>\r\n		<li id=\"menu-item-5026\"><a href=\"https://finestdevs.com/demos/wp/shadepro/checkout/\">Checkout</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5013\"><a href=\"#\">Pricing</a>\r\n	<ul>\r\n		<li id=\"menu-item-5015\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-01/\">Pricing 01</a></li>\r\n		<li id=\"menu-item-5014\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-02/\">Pricing 02</a></li>\r\n		<li id=\"menu-item-4999\"><a href=\"https://finestdevs.com/demos/wp/shadepro/pricing-03/\">Pricing 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5016\"><a href=\"#\">Contact</a>\r\n	<ul>\r\n		<li id=\"menu-item-5017\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact 01</a></li>\r\n		<li id=\"menu-item-5018\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-02/\">Contact 02</a></li>\r\n		<li id=\"menu-item-5019\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact-03/\">Contact 03</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5029\"><a href=\"#\">Account</a>\r\n	<ul>\r\n		<li id=\"menu-item-5028\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sign-up/\">Sign up</a></li>\r\n		<li id=\"menu-item-5027\"><a href=\"https://finestdevs.com/demos/wp/shadepro/login/\">Sign In</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5355\"><a href=\"#\">Utility</a>\r\n	<ul>\r\n		<li id=\"menu-item-5352\"><a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">Terms &#038; Conditions</a></li>\r\n		<li id=\"menu-item-5353\"><a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">Return Policy</a></li>\r\n		<li id=\"menu-item-5356\"><a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">Privacy Policy</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-5648\"><a href=\"#\">Elements</a>\r\n<ul>\r\n	<li id=\"menu-item-5647\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/headers/\">Headers</a>\r\n	<ul>\r\n		<li id=\"menu-item-5646\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/hero-areas/\">Hero Areas</a></li>\r\n		<li id=\"menu-item-5643\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/features/\">Features</a></li>\r\n		<li id=\"menu-item-5644\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/contents/\">Contents</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-5642\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/pricings/\">Pricings</a>\r\n	<ul>\r\n		<li id=\"menu-item-5640\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/cta/\">CTA</a></li>\r\n		<li id=\"menu-item-5641\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/stats/\">Stats</a></li>\r\n		<li id=\"menu-item-8404\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/alerts/\">Alerts</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8405\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/videos/\">Videos</a>\r\n	<ul>\r\n		<li id=\"menu-item-8406\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/newsletter/\">Newsletter</a></li>\r\n		<li id=\"menu-item-8407\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/teams/\">Teams</a></li>\r\n		<li id=\"menu-item-8408\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/faq/\">FAQ</a></li>\r\n	</ul>\r\n</li>\r\n	<li id=\"menu-item-8409\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/blogs/\">Blogs</a>\r\n	<ul>\r\n		<li id=\"menu-item-8410\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/clients/\">Clients</a></li>\r\n		<li id=\"menu-item-8411\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/testimonials/\">Testimonials</a></li>\r\n		<li id=\"menu-item-5645\"><a href=\"https://finestdevs.com/demos/wp/shadepro/sections/footers/\">Footers</a></li>\r\n	</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li id=\"menu-item-4996\"><a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Contact</a></li>\r\n</ul>                </nav><!-- #site-navigation -->\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Get more visitors, get more sales.</h2>		\r\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n		https://www.youtube.com/watch?v=XHOmBV4js_E		\r\n										<img width=\"207\" height=\"188\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"314\" height=\"54\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6.png 314w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-6-300x52.png 300w\" sizes=\"(max-width: 314px) 100vw, 314px\" />											\r\n										<img width=\"358\" height=\"70\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5.png 358w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-5-300x59.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" />											\r\n										<img width=\"328\" height=\"64\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1.png 328w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/11/logo-4-1-300x59.png 300w\" sizes=\"(max-width: 328px) 100vw, 328px\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-3-oymtyh6w5yum1bl6puofy3qnlfy14xvxxkh4ovu7w2.png\" title=\"logo 3\" alt=\"logo 3\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-2-oymtyfb7sas1e3nx0tv6t47qeo7apjoh9b65qbx056.png\" title=\"logo 2\" alt=\"logo 2\" />											\r\n										<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/elementor/thumbs/logo-1-oymtyoplxew2uhg5iid77ug0h82gboypa9ihcsbioa.png\" title=\"logo 1\" alt=\"logo 1\" />											\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"37\" viewBox=\"0 0 35 37\"><g><g><path fill=\"#473bf0\" fill-opacity=\".3\" d=\"M17.49 32.112L3.15 21.01 0 23.449 17.5 37 35 23.449 31.83 21z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.5 27l14.32-11.041L35 13.5 17.5 0 0 13.5l3.17 2.44z\"></path></g></g></svg>					\r\n					<h4>Organize your campaigns</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"37\" height=\"38\" viewBox=\"0 0 37 38\"><g><g><path fill=\"#473bf0\" d=\"M17 21c5.069 0 9-5.644 9-10.5V8.885C26 3.986 21.962 0 17 0S8 3.986 8 8.885V10.5C8 15.356 11.931 21 17 21z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M37 28.736L36.528 23l-1.725 1.984a6.236 6.236 0 0 0-4.205-1.629c-3.514 0-6.39 2.944-6.598 6.645h1.558c.213-2.74 2.432-4.98 5.04-4.98 1.169 0 2.264.425 3.14 1.189l-1.944 2.235z\"></path></g><g opacity=\".5\"><path fill=\"#473bf0\" d=\"M35.443 31c-.213 2.74-2.432 4.98-5.04 4.98a4.749 4.749 0 0 1-3.14-1.189l1.944-2.235L24 32.264 24.472 38l1.725-1.984a6.236 6.236 0 0 0 4.205 1.629c3.514 0 6.39-2.944 6.598-6.645z\"></path></g><g><path fill=\"#473bf0\" d=\"M22.044 31.2c0-2.585 1.145-4.902 2.956-6.512A45.513 45.513 0 0 0 17.146 24c-5.35 0-9.737.95-12.474 1.748C1.878 26.562 0 29.028 0 31.885V35.2c0 .442.365.8.816.8h21.228z\"></path></g></g></svg>					\r\n					<h4>Manage customers</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n						<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"34\" height=\"34\" viewBox=\"0 0 34 34\"><g><g opacity=\".4\"><path fill=\"#473bf0\" d=\"M20.3 19h-5.6c-.386 0-.7.336-.7.75v13.5c0 .414.314.75.7.75h5.6c.386 0 .7-.336.7-.75v-13.5c0-.414-.314-.75-.7-.75z\"></path></g><g opacity=\".3\"><path fill=\"#473bf0\" d=\"M6.3 27H.7a.7.7 0 0 0-.7.7v5.6a.7.7 0 0 0 .7.7h5.6a.7.7 0 0 0 .7-.7v-5.6a.7.7 0 0 0-.7-.7z\"></path></g><g opacity=\".7\"><path fill=\"#473bf0\" d=\"M33.3 12h-5.6c-.386 0-.7.329-.7.733v20.534c0 .404.314.733.7.733h5.6c.386 0 .7-.329.7-.733V12.733c0-.404-.314-.733-.7-.733z\"></path></g><g><path fill=\"#473bf0\" d=\"M17.4 11.532l9.117-9.026v4.836c0 .405.332.734.741.734.41 0 .742-.329.742-.734V.734A.738.738 0 0 0 27.258 0h-6.675a.738.738 0 0 0-.742.734c0 .405.333.734.742.734h4.885l-8.593 8.506-5.41-5.354a.746.746 0 0 0-1.048 0L3 11.962 4.049 13l6.892-6.823 5.41 5.355a.746.746 0 0 0 1.048 0z\"></path></g></g></svg>					\r\n					<h4>Track progress fast</h4>\r\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\r\n										<img width=\"600\" height=\"424\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop.jpg 600w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-492x348.jpg 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-Laptop-300x212.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\r\n			<h2>Track your progress with our advanced site.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n										<img width=\"519\" height=\"510\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4.png 519w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-492x483.png 492w, https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-4-300x295.png 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-5.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_2.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"255\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" alt=\"\" loading=\"lazy\" />											\r\n										<img width=\"212\" height=\"206\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>Make your customers happy by giving services.</h2>		\r\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\r\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\r\n                    Start a free trial\r\n                                                        </a>\r\n			<h2>Pricing & Plans</h2>		\r\n			<h2>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</h2>		\r\n																	Monthly \r\n											<a href=\"javascript:\" data-pricing-trigger data-target=\"#shadepro-dynamic-deck\"></a>\r\n									Yearly \r\n																								Save 25%\r\n									<!-- classic pricing -->\r\n											Starter\r\n												<h2 data-active=\"19\" data-monthly=\"19\" data-yearly=\"49\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  6 Month Premium Support</p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />  Lifetime Updates </p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Standard\r\n												<h2 data-active=\"49\" data-monthly=\"49\" data-yearly=\"150\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/small-remove.svg\" alt=\"\" />   Lifetime Updates</p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n									<!-- classic pricing -->\r\n											Premium\r\n												<h2 data-active=\"99\" data-monthly=\"99\" data-yearly=\"300\">$</h2>\r\n										<!--  end of shadepro-price-wrap  -->\r\n										<p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  Commercial License</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  100+ HTML UI Elements</strong></p><p><strong><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  01 Domain Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>6 Month Premium Support</strong></p><p><img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/Path.svg\" alt=\"\" />  <strong>Lifetime Updates</strong></p>									\r\n									<!-- minimal pricing -->\r\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">Start Free Trial </a>\r\n																		No credit card required								\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“OMG! I cannot believe that I have got a brand new landing page after getting Omega. It was super easy to edit and publish.”</h2>		\r\n			<h2>Diego Morata</h2>		\r\n			<h2>Web Developer</h2>		\r\n										<img width=\"26\" height=\"25\" src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/quote.png\" alt=\"\" loading=\"lazy\" />											\r\n			<h2>“Simply the best. Better than all the rest. I’d recommend this product to beginners and advanced users.”</h2>		\r\n			<h2>Franklin Hicks</h2>		\r\n			<h2>Digital Marketer</h2>		\r\n			<p>Pages</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">					About us\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">					Contact us \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">					Blog\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">					Shop\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Product</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">					Bed Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">					Dining Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">					Kitchen\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">					Living Room\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">					Office\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Article</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">					Business\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">					Cyber Security\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">					Gaming\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">					Marketing\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Legal</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">					Privacy Policy \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">					Terms & Conditions\r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">					Return Policy\r\n											</a>\r\n									</li>\r\n						</ul>\r\n			<p>Contact us</p>		\r\n					<ul>\r\n							<li>\r\n					<a href=\"mailto:+133-394-3439-1435\">					support@grayic.com \r\n											</a>\r\n									</li>\r\n								<li>\r\n					<a href=\"tel:+133-394-3439-1435\">					+133-394-3439-1435\r\n											</a>\r\n									</li>\r\n						</ul>\r\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\r\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\r\n						Twitter\r\n											</a>\r\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\r\n						Facebook-square\r\n											</a>\r\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\r\n						Instagram\r\n											</a>\r\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\r\n						Linkedin\r\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:10:08','2021-09-10 05:10:08','',2808,'https://candc117.dev34.info/?p=2865',0,'revision','',0),(2871,1,'2021-09-10 05:14:05','2021-09-10 05:14:05','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:14:05','2021-09-10 05:14:05','',2808,'https://candc117.dev34.info/?p=2871',0,'revision','',0),(2872,1,'2021-09-10 05:14:05','2021-09-10 05:14:05','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:14:05','2021-09-10 05:14:05','',2808,'https://candc117.dev34.info/?p=2872',0,'revision','',0),(2873,1,'2021-09-10 05:15:51','2021-09-10 05:15:51','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:15:51','2021-09-10 05:15:51','',2808,'https://candc117.dev34.info/?p=2873',0,'revision','',0),(2874,1,'2021-09-10 05:15:51','2021-09-10 05:15:51','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:15:51','2021-09-10 05:15:51','',2808,'https://candc117.dev34.info/?p=2874',0,'revision','',0),(2875,1,'2021-09-10 05:15:51','2021-09-10 05:15:51','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:15:51','2021-09-10 05:15:51','',2808,'https://candc117.dev34.info/?p=2875',0,'revision','',0),(2876,1,'2021-09-10 05:16:46','2021-09-10 05:16:46','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:16:46','2021-09-10 05:16:46','',2808,'https://candc117.dev34.info/?p=2876',0,'revision','',0),(2877,1,'2021-09-10 05:16:46','2021-09-10 05:16:46','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:16:46','2021-09-10 05:16:46','',2808,'https://candc117.dev34.info/?p=2877',0,'revision','',0),(2878,1,'2021-09-10 05:16:46','2021-09-10 05:16:46','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:16:46','2021-09-10 05:16:46','',2808,'https://candc117.dev34.info/?p=2878',0,'revision','',0),(2879,1,'2021-09-10 05:18:03','2021-09-10 05:18:03','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:18:03','2021-09-10 05:18:03','',2808,'https://candc117.dev34.info/?p=2879',0,'revision','',0),(2880,1,'2021-09-10 05:18:03','2021-09-10 05:18:03','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n					<h4>Organize your campaigns</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Manage customers</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n					<h4>Track progress fast</h4>\n					<p>With lots of unique blocks, you can easily build a page without coding. Build your next landing page.</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:18:03','2021-09-10 05:18:03','',2808,'https://candc117.dev34.info/?p=2880',0,'revision','',0),(2881,1,'2021-09-10 05:18:03','2021-09-10 05:18:03','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:18:03','2021-09-10 05:18:03','',2808,'https://candc117.dev34.info/?p=2881',0,'revision','',0),(2882,1,'2021-09-10 05:20:27','2021-09-10 05:20:27','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:20:27','2021-09-10 05:20:27','',2808,'https://candc117.dev34.info/?p=2882',0,'revision','',0),(2883,1,'2021-09-10 05:20:27','2021-09-10 05:20:27','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:20:27','2021-09-10 05:20:27','',2808,'https://candc117.dev34.info/?p=2883',0,'revision','',0),(2911,1,'2021-09-10 20:15:41','2021-09-10 20:15:41','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:15:41','2021-09-10 20:15:41','',2808,'https://candc117.dev34.info/?p=2911',0,'revision','',0),(2904,1,'2021-09-10 16:08:51','2021-09-10 16:08:51','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 16:08:51','2021-09-10 16:08:51','',2808,'https://candc117.dev34.info/?p=2904',0,'revision','',0),(2884,1,'2021-09-10 05:20:28','2021-09-10 05:20:28','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 05:20:28','2021-09-10 05:20:28','',2808,'https://candc117.dev34.info/?p=2884',0,'revision','',0),(2885,1,'2021-09-10 05:21:40','2021-09-10 05:21:40',' ','','','publish','closed','closed','','2885','','','2021-09-10 05:21:40','2021-09-10 05:21:40','',0,'https://candc117.dev34.info/?p=2885',1,'nav_menu_item','',0),(2886,1,'2021-09-10 05:21:40','2021-09-10 05:21:40',' ','','','publish','closed','closed','','2886','','','2021-09-10 05:21:40','2021-09-10 05:21:40','',0,'https://candc117.dev34.info/?p=2886',2,'nav_menu_item','',0),(2887,1,'2021-09-10 05:21:40','2021-09-10 05:21:40',' ','','','publish','closed','closed','','2887','','','2021-09-10 05:21:40','2021-09-10 05:21:40','',0,'https://candc117.dev34.info/?p=2887',3,'nav_menu_item','',0),(2888,1,'2021-09-10 05:21:40','2021-09-10 05:21:40',' ','','','publish','closed','closed','','2888','','','2021-09-10 05:21:40','2021-09-10 05:21:40','',0,'https://candc117.dev34.info/?p=2888',4,'nav_menu_item','',0),(2889,1,'2021-09-10 05:21:40','2021-09-10 05:21:40',' ','','','publish','closed','closed','','2889','','','2021-09-10 05:21:40','2021-09-10 05:21:40','',0,'https://candc117.dev34.info/?p=2889',5,'nav_menu_item','',0),(2890,1,'2021-09-10 05:21:40','2021-09-10 05:21:40',' ','','','publish','closed','closed','','2890','','','2021-09-10 05:21:40','2021-09-10 05:21:40','',0,'https://candc117.dev34.info/?p=2890',6,'nav_menu_item','',0),(2891,1,'2021-10-06 04:34:58','2021-09-10 05:22:55','','Home','','publish','closed','closed','','home','','','2021-10-06 04:34:58','2021-10-06 04:34:58','',0,'https://candc117.dev34.info/?p=2891',1,'nav_menu_item','',0),(2892,1,'2021-10-06 04:34:58','2021-09-10 05:22:55','','About Us','','publish','closed','closed','','about-us','','','2021-10-06 04:34:58','2021-10-06 04:34:58','',0,'https://candc117.dev34.info/?p=2892',3,'nav_menu_item','',0),(2893,1,'2021-10-06 04:34:58','2021-09-10 05:22:55','','Our Services','','publish','closed','closed','','our-services','','','2021-10-06 04:34:58','2021-10-06 04:34:58','',0,'https://candc117.dev34.info/?p=2893',2,'nav_menu_item','',0),(2894,1,'2021-10-06 04:34:58','2021-09-10 05:22:55','','Contact us','','publish','closed','closed','','contact-us','','','2021-10-06 04:34:58','2021-10-06 04:34:58','',0,'https://candc117.dev34.info/?p=2894',4,'nav_menu_item','',0),(3184,1,'2021-10-06 04:18:37','2021-10-06 04:18:37','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-10-06 04:18:37','2021-10-06 04:18:37','',2811,'https://candc117.dev34.info/?p=3184',0,'revision','',0),(2896,1,'2021-09-10 05:24:57','2021-09-10 05:24:57','<h2>Contact us today for a Freee Estimate!</h2>\r\n<ul>\r\n 	<li><a href=\"tel:425-772-7485\">\r\nCall: 425-772-7485\r\n</a></li>\r\n</ul>\r\n<ul>\r\n 	<li><a href=\"mailto:%20info@candcmotorsport.com\">\r\nEmail: info@candcmotorsport.com\r\n</a></li>\r\n</ul>\r\n<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" sizes=\"(max-width: 676px) 100vw, 676px\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" alt=\"\" width=\"676\" height=\"150\" />','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-10 05:24:57','2021-09-10 05:24:57','',2811,'https://candc117.dev34.info/?p=2896',0,'revision','',0),(2897,1,'2021-09-10 05:24:57','2021-09-10 05:24:57','<h2>Contact us today for a Freee Estimate!</h2>\r\n<ul>\r\n 	<li><a href=\"tel:425-772-7485\">\r\nCall: 425-772-7485\r\n</a></li>\r\n</ul>\r\n<ul>\r\n 	<li><a href=\"mailto:%20info@candcmotorsport.com\">\r\nEmail: info@candcmotorsport.com\r\n</a></li>\r\n</ul>\r\n<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" sizes=\"(max-width: 676px) 100vw, 676px\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" alt=\"\" width=\"676\" height=\"150\" />','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-10 05:24:57','2021-09-10 05:24:57','',2811,'https://candc117.dev34.info/?p=2897',0,'revision','',0),(3110,1,'2021-09-13 18:04:37','2021-09-13 18:04:37','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-13 18:04:37','2021-09-13 18:04:37','',2811,'https://candc117.dev34.info/?p=3110',0,'revision','',0),(2898,1,'2021-09-10 05:24:57','2021-09-10 05:24:57','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-10 05:24:57','2021-09-10 05:24:57','',2811,'https://candc117.dev34.info/?p=2898',0,'revision','',0),(2899,1,'2021-09-10 05:25:11','2021-09-10 05:25:11','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-10 05:25:11','2021-09-10 05:25:11','',2811,'https://candc117.dev34.info/?p=2899',0,'revision','',0),(2900,1,'2021-09-10 05:25:11','2021-09-10 05:25:11','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-10 05:25:11','2021-09-10 05:25:11','',2811,'https://candc117.dev34.info/?p=2900',0,'revision','',0),(2901,1,'2021-09-10 05:25:11','2021-09-10 05:25:11','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-10 05:25:11','2021-09-10 05:25:11','',2811,'https://candc117.dev34.info/?p=2901',0,'revision','',0),(2902,1,'2021-09-10 16:08:51','2021-09-10 16:08:51','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 16:08:51','2021-09-10 16:08:51','',2808,'https://candc117.dev34.info/?p=2902',0,'revision','',0),(2903,1,'2021-09-10 16:08:51','2021-09-10 16:08:51','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 16:08:51','2021-09-10 16:08:51','',2808,'https://candc117.dev34.info/?p=2903',0,'revision','',0),(2905,1,'2021-09-10 16:18:30','2021-09-10 16:18:30','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 16:18:30','2021-09-10 16:18:30','',2808,'https://candc117.dev34.info/?p=2905',0,'revision','',0),(2906,1,'2021-09-10 16:18:30','2021-09-10 16:18:30','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 16:18:30','2021-09-10 16:18:30','',2808,'https://candc117.dev34.info/?p=2906',0,'revision','',0),(2907,1,'2021-09-10 16:18:30','2021-09-10 16:18:30','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 16:18:30','2021-09-10 16:18:30','',2808,'https://candc117.dev34.info/?p=2907',0,'revision','',0),(2909,1,'2021-09-10 20:15:41','2021-09-10 20:15:41','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:15:41','2021-09-10 20:15:41','',2808,'https://candc117.dev34.info/?p=2909',0,'revision','',0),(2910,1,'2021-09-10 20:15:41','2021-09-10 20:15:41','<h2>Get more visitors, get more sales.</h2>		\n		<p>With lots of unique blocks, you can easily build a page without coding. Build your next consultancy website within few minutes.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-2.png\" title=\"\" alt=\"\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n		<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:15:41','2021-09-10 20:15:41','',2808,'https://candc117.dev34.info/?p=2910',0,'revision','',0),(2915,1,'2021-09-10 20:23:13','2021-09-10 20:23:13','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><img src=\"https://candc117.dev34.info/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" /></figure><h3>This is the heading</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:23:13','2021-09-10 20:23:13','',2808,'https://candc117.dev34.info/?p=2915',0,'revision','',0),(2913,1,'2021-09-10 20:23:13','2021-09-10 20:23:13','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:23:13','2021-09-10 20:23:13','',2808,'https://candc117.dev34.info/?p=2913',0,'revision','',0),(2914,1,'2021-09-10 20:23:13','2021-09-10 20:23:13','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						This is the heading					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:23:13','2021-09-10 20:23:13','',2808,'https://candc117.dev34.info/?p=2914',0,'revision','',0),(2923,1,'2021-09-10 20:44:09','2021-09-10 20:44:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:44:09','2021-09-10 20:44:09','',2808,'https://candc117.dev34.info/?p=2923',0,'revision','',0),(2917,1,'2021-09-10 20:41:54','2021-09-10 20:41:54','','Screen Shot 2021-09-09 at 9.20.53 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-20-53-am','','','2021-09-10 20:41:54','2021-09-10 20:41:54','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png',0,'attachment','image/png',0),(2918,1,'2021-09-10 20:42:45','2021-09-10 20:42:45','','Screen Shot 2021-09-10 at 1.37.39 PM','','inherit','open','closed','','screen-shot-2021-09-10-at-1-37-39-pm','','','2021-09-10 20:42:45','2021-09-10 20:42:45','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png',0,'attachment','image/png',0),(2919,1,'2021-09-10 20:43:31','2021-09-10 20:43:31','','Screen Shot 2021-09-10 at 1.27.40 PM','','inherit','open','closed','','screen-shot-2021-09-10-at-1-27-40-pm','','','2021-09-10 20:43:31','2021-09-10 20:43:31','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png',0,'attachment','image/png',0),(2920,1,'2021-09-10 20:43:55','2021-09-10 20:43:55','','lifted tahoe (1)','','inherit','open','closed','','lifted-tahoe-1','','','2021-09-10 20:43:55','2021-09-10 20:43:55','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg',0,'attachment','image/jpeg',0),(2921,1,'2021-09-10 20:44:09','2021-09-10 20:44:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><img src=\"https://candc117.dev34.info/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" /></figure><h3>This is the heading</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:44:09','2021-09-10 20:44:09','',2808,'https://candc117.dev34.info/?p=2921',0,'revision','',0),(2922,1,'2021-09-10 20:44:09','2021-09-10 20:44:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing The Following Manufacturers</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><img src=\"https://candc117.dev34.info/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" /></figure><h3>This is the heading</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:44:09','2021-09-10 20:44:09','',2808,'https://candc117.dev34.info/?p=2922',0,'revision','',0),(2924,1,'2021-09-10 20:46:29','2021-09-10 20:46:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:46:29','2021-09-10 20:46:29','',2808,'https://candc117.dev34.info/?p=2924',0,'revision','',0),(2925,1,'2021-09-10 20:46:29','2021-09-10 20:46:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:46:29','2021-09-10 20:46:29','',2808,'https://candc117.dev34.info/?p=2925',0,'revision','',0),(2926,1,'2021-09-10 20:46:29','2021-09-10 20:46:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:46:29','2021-09-10 20:46:29','',2808,'https://candc117.dev34.info/?p=2926',0,'revision','',0),(2927,1,'2021-09-10 20:55:47','2021-09-10 20:55:47','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:55:47','2021-09-10 20:55:47','',2808,'https://candc117.dev34.info/?p=2927',0,'revision','',0),(2928,1,'2021-09-10 20:55:48','2021-09-10 20:55:48','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:55:48','2021-09-10 20:55:48','',2808,'https://candc117.dev34.info/?p=2928',0,'revision','',0),(2929,1,'2021-09-10 20:55:48','2021-09-10 20:55:48','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:55:48','2021-09-10 20:55:48','',2808,'https://candc117.dev34.info/?p=2929',0,'revision','',0),(2930,1,'2021-09-10 20:56:39','2021-09-10 20:56:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:56:39','2021-09-10 20:56:39','',2808,'https://candc117.dev34.info/?p=2930',0,'revision','',0),(2931,1,'2021-09-10 20:56:39','2021-09-10 20:56:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:56:39','2021-09-10 20:56:39','',2808,'https://candc117.dev34.info/?p=2931',0,'revision','',0),(2932,1,'2021-09-10 20:56:39','2021-09-10 20:56:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:56:39','2021-09-10 20:56:39','',2808,'https://candc117.dev34.info/?p=2932',0,'revision','',0),(2933,1,'2021-09-10 20:57:01','2021-09-10 20:57:01','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:57:01','2021-09-10 20:57:01','',2808,'https://candc117.dev34.info/?p=2933',0,'revision','',0),(2934,1,'2021-09-10 20:57:01','2021-09-10 20:57:01','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:57:01','2021-09-10 20:57:01','',2808,'https://candc117.dev34.info/?p=2934',0,'revision','',0),(2935,1,'2021-09-10 20:57:02','2021-09-10 20:57:02','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 20:57:02','2021-09-10 20:57:02','',2808,'https://candc117.dev34.info/?p=2935',0,'revision','',0),(2936,1,'2021-09-10 21:00:32','2021-09-10 21:00:32','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:00:32','2021-09-10 21:00:32','',2808,'https://candc117.dev34.info/?p=2936',0,'revision','',0),(2937,1,'2021-09-10 21:00:32','2021-09-10 21:00:32','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:00:32','2021-09-10 21:00:32','',2808,'https://candc117.dev34.info/?p=2937',0,'revision','',0),(2938,1,'2021-09-10 21:00:33','2021-09-10 21:00:33','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:00:33','2021-09-10 21:00:33','',2808,'https://candc117.dev34.info/?p=2938',0,'revision','',0),(2939,1,'2021-09-10 21:00:57','2021-09-10 21:00:57','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:00:57','2021-09-10 21:00:57','',2808,'https://candc117.dev34.info/?p=2939',0,'revision','',0),(2940,1,'2021-09-10 21:00:58','2021-09-10 21:00:58','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:00:58','2021-09-10 21:00:58','',2808,'https://candc117.dev34.info/?p=2940',0,'revision','',0),(2941,1,'2021-09-10 21:00:58','2021-09-10 21:00:58','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:00:58','2021-09-10 21:00:58','',2808,'https://candc117.dev34.info/?p=2941',0,'revision','',0),(2942,1,'2021-09-10 21:04:08','2021-09-10 21:04:08','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:04:08','2021-09-10 21:04:08','',2808,'https://candc117.dev34.info/?p=2942',0,'revision','',0),(2943,1,'2021-09-10 21:04:08','2021-09-10 21:04:08','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:04:08','2021-09-10 21:04:08','',2808,'https://candc117.dev34.info/?p=2943',0,'revision','',0),(2944,1,'2021-09-10 21:04:08','2021-09-10 21:04:08','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:04:08','2021-09-10 21:04:08','',2808,'https://candc117.dev34.info/?p=2944',0,'revision','',0),(2945,1,'2021-09-10 21:05:02','2021-09-10 21:05:02','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:05:02','2021-09-10 21:05:02','',2808,'https://candc117.dev34.info/?p=2945',0,'revision','',0),(2946,1,'2021-09-10 21:05:02','2021-09-10 21:05:02','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:05:02','2021-09-10 21:05:02','',2808,'https://candc117.dev34.info/?p=2946',0,'revision','',0),(2947,1,'2021-09-10 21:05:02','2021-09-10 21:05:02','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:05:02','2021-09-10 21:05:02','',2808,'https://candc117.dev34.info/?p=2947',0,'revision','',0),(2948,1,'2021-09-10 21:05:36','2021-09-10 21:05:36','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:05:36','2021-09-10 21:05:36','',2808,'https://candc117.dev34.info/?p=2948',0,'revision','',0),(2949,1,'2021-09-10 21:05:36','2021-09-10 21:05:36','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:05:36','2021-09-10 21:05:36','',2808,'https://candc117.dev34.info/?p=2949',0,'revision','',0);
INSERT INTO `wp9l_posts` VALUES (2950,1,'2021-09-10 21:05:36','2021-09-10 21:05:36','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:05:36','2021-09-10 21:05:36','',2808,'https://candc117.dev34.info/?p=2950',0,'revision','',0),(2951,1,'2021-09-10 21:07:38','2021-09-10 21:07:38','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:07:38','2021-09-10 21:07:38','',2808,'https://candc117.dev34.info/?p=2951',0,'revision','',0),(2952,1,'2021-09-10 21:07:38','2021-09-10 21:07:38','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Understand your visitors fast. Take quick actions.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:07:38','2021-09-10 21:07:38','',2808,'https://candc117.dev34.info/?p=2952',0,'revision','',0),(2953,1,'2021-09-10 21:07:38','2021-09-10 21:07:38','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:07:38','2021-09-10 21:07:38','',2808,'https://candc117.dev34.info/?p=2953',0,'revision','',0),(2954,1,'2021-09-10 21:18:27','2021-09-10 21:18:27','','truck suspension 1','','inherit','open','closed','','truck-suspension-1','','','2021-09-10 21:18:27','2021-09-10 21:18:27','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg',0,'attachment','image/jpeg',0),(2955,1,'2021-09-10 21:18:42','2021-09-10 21:18:42','','jeep lighting','','inherit','open','closed','','jeep-lighting','','','2021-09-10 21:18:42','2021-09-10 21:18:42','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg',0,'attachment','image/jpeg',0),(2956,1,'2021-09-10 21:18:57','2021-09-10 21:18:57','','Chevy-Silverado-1500-front-bumper','','inherit','open','closed','','chevy-silverado-1500-front-bumper','','','2021-09-10 21:18:57','2021-09-10 21:18:57','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg',0,'attachment','image/jpeg',0),(2957,1,'2021-09-10 21:25:29','2021-09-10 21:25:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:25:29','2021-09-10 21:25:29','',2808,'https://candc117.dev34.info/?p=2957',0,'revision','',0),(2958,1,'2021-09-10 21:25:29','2021-09-10 21:25:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"\"  >\n                    Start a free trial\n                                                        </a>\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:25:29','2021-09-10 21:25:29','',2808,'https://candc117.dev34.info/?p=2958',0,'revision','',0),(3011,1,'2021-09-10 22:09:50','2021-09-10 22:09:50','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:09:50','2021-09-10 22:09:50','',2808,'https://candc117.dev34.info/?p=3011',0,'revision','',0),(2959,1,'2021-09-10 21:25:29','2021-09-10 21:25:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:25:29','2021-09-10 21:25:29','',2808,'https://candc117.dev34.info/?p=2959',0,'revision','',0),(2960,1,'2021-09-10 21:27:06','2021-09-10 21:27:06','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:27:06','2021-09-10 21:27:06','',2808,'https://candc117.dev34.info/?p=2960',0,'revision','',0),(2961,1,'2021-09-10 21:27:07','2021-09-10 21:27:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:27:07','2021-09-10 21:27:07','',2808,'https://candc117.dev34.info/?p=2961',0,'revision','',0),(2968,1,'2021-09-10 21:30:17','2021-09-10 21:30:17','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:30:17','2021-09-10 21:30:17','',2808,'https://candc117.dev34.info/?p=2968',0,'revision','',0),(2962,1,'2021-09-10 21:27:07','2021-09-10 21:27:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:27:07','2021-09-10 21:27:07','',2808,'https://candc117.dev34.info/?p=2962',0,'revision','',0),(2963,1,'2021-09-10 21:27:52','2021-09-10 21:27:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:27:52','2021-09-10 21:27:52','',2808,'https://candc117.dev34.info/?p=2963',0,'revision','',0),(2964,1,'2021-09-10 21:27:52','2021-09-10 21:27:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:27:52','2021-09-10 21:27:52','',2808,'https://candc117.dev34.info/?p=2964',0,'revision','',0),(2965,1,'2021-09-10 21:27:53','2021-09-10 21:27:53','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:27:53','2021-09-10 21:27:53','',2808,'https://candc117.dev34.info/?p=2965',0,'revision','',0),(2966,1,'2021-09-10 21:30:17','2021-09-10 21:30:17','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:30:17','2021-09-10 21:30:17','',2808,'https://candc117.dev34.info/?p=2966',0,'revision','',0),(2967,1,'2021-09-10 21:30:17','2021-09-10 21:30:17','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The Northwest\'s Preferred Choice for Offroad Vehicle Customizations!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:30:17','2021-09-10 21:30:17','',2808,'https://candc117.dev34.info/?p=2967',0,'revision','',0),(2969,1,'2021-09-10 21:36:18','2021-09-10 21:36:18','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:36:18','2021-09-10 21:36:18','',2808,'https://candc117.dev34.info/?p=2969',0,'revision','',0),(2970,1,'2021-09-10 21:36:18','2021-09-10 21:36:18','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"708\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM.png 708w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-300x219.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.02-AM-492x360.png 492w\" sizes=\"(max-width: 708px) 100vw, 708px\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/wa-6.png\" title=\"\" alt=\"\" />															\n															<img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/09/1_copy_3.png\" title=\"\" alt=\"\" />															\n			<h2>Make your customers happy by giving services.</h2>		\n		<p>We share common trends and strategies for improving your rental income and making sure you stay in high demand.</p>		\n                            <a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\"  >\n                    Start a free trial\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:36:18','2021-09-10 21:36:18','',2808,'https://candc117.dev34.info/?p=2970',0,'revision','',0),(2971,1,'2021-09-10 21:36:18','2021-09-10 21:36:18','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:36:18','2021-09-10 21:36:18','',2808,'https://candc117.dev34.info/?p=2971',0,'revision','',0),(2975,1,'2021-09-10 21:38:48','2021-09-10 21:38:48','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:38:48','2021-09-10 21:38:48','',2808,'https://candc117.dev34.info/?p=2975',0,'revision','',0),(2973,1,'2021-09-10 21:38:48','2021-09-10 21:38:48','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:38:48','2021-09-10 21:38:48','',2808,'https://candc117.dev34.info/?p=2973',0,'revision','',0),(2974,1,'2021-09-10 21:38:48','2021-09-10 21:38:48','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:38:48','2021-09-10 21:38:48','',2808,'https://candc117.dev34.info/?p=2974',0,'revision','',0),(2976,1,'2021-09-10 21:41:07','2021-09-10 21:41:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:41:07','2021-09-10 21:41:07','',2808,'https://candc117.dev34.info/?p=2976',0,'revision','',0),(2977,1,'2021-09-10 21:41:07','2021-09-10 21:41:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:41:07','2021-09-10 21:41:07','',2808,'https://candc117.dev34.info/?p=2977',0,'revision','',0),(2978,1,'2021-09-10 21:41:07','2021-09-10 21:41:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:41:07','2021-09-10 21:41:07','',2808,'https://candc117.dev34.info/?p=2978',0,'revision','',0),(2979,1,'2021-09-10 21:42:06','2021-09-10 21:42:06','','Screen Shot 2021-09-09 at 9.22.17 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-22-17-am','','','2021-09-10 21:42:06','2021-09-10 21:42:06','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.22.17-AM.png',0,'attachment','image/png',0),(2980,1,'2021-09-10 21:42:39','2021-09-10 21:42:39','','Screen Shot 2021-09-09 at 9.21.06 AM','','inherit','open','closed','','screen-shot-2021-09-09-at-9-21-06-am','','','2021-09-10 21:42:39','2021-09-10 21:42:39','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.21.06-AM.png',0,'attachment','image/png',0),(2988,1,'2021-09-10 21:55:40','2021-09-10 21:55:40','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"768\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-492x369.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"741\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-768x556.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1536x1111.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-2048x1482.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-492x356.jpg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:55:40','2021-09-10 21:55:40','',2808,'https://candc117.dev34.info/?p=2988',0,'revision','',0),(2982,1,'2021-09-10 21:48:51','2021-09-10 21:48:51','','20210113_135831','','inherit','open','closed','','20210113_135831','','','2021-09-10 21:48:51','2021-09-10 21:48:51','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831.jpg',0,'attachment','image/jpeg',0),(2983,1,'2021-09-10 21:50:10','2021-09-10 21:50:10','','20210113_145529','','inherit','open','closed','','20210113_145529','','','2021-09-10 21:50:10','2021-09-10 21:50:10','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529.jpg',0,'attachment','image/jpeg',0),(2984,1,'2021-09-10 21:52:59','2021-09-10 21:52:59','','20210113_145529 (1)','','inherit','open','closed','','20210113_145529-1','','','2021-09-10 21:52:59','2021-09-10 21:52:59','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1.jpg',0,'attachment','image/jpeg',0),(2985,1,'2021-09-10 21:53:51','2021-09-10 21:53:51','','IMG_20210118_214223_577','','inherit','open','closed','','img_20210118_214223_577','','','2021-09-10 21:53:51','2021-09-10 21:53:51','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577.jpg',0,'attachment','image/jpeg',0),(2986,1,'2021-09-10 21:55:39','2021-09-10 21:55:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:55:39','2021-09-10 21:55:39','',2808,'https://candc117.dev34.info/?p=2986',0,'revision','',0),(2987,1,'2021-09-10 21:55:39','2021-09-10 21:55:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"682\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1024x682.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-768x512.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-1536x1024.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper-492x328.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/Chevy-Silverado-1500-front-bumper.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1593\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-300x187.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1024x637.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-768x478.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-1536x956.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-2048x1274.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-492x306.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:55:39','2021-09-10 21:55:39','',2808,'https://candc117.dev34.info/?p=2987',0,'revision','',0),(3003,1,'2021-09-10 22:04:04','2021-09-10 22:04:04','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:04:04','2021-09-10 22:04:04','',2808,'https://candc117.dev34.info/?p=3003',0,'revision','',0),(2994,1,'2021-09-10 21:57:51','2021-09-10 21:57:51','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"1024\" height=\"768\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-492x369.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"741\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-768x556.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1536x1111.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-2048x1482.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-492x356.jpg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:57:51','2021-09-10 21:57:51','',2808,'https://candc117.dev34.info/?p=2994',0,'revision','',0),(2990,1,'2021-09-10 21:56:50','2021-09-10 21:56:50','','20210113_145511','','inherit','open','closed','','20210113_145511','','','2021-09-10 21:56:50','2021-09-10 21:56:50','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145511.jpg',0,'attachment','image/jpeg',0),(2991,1,'2021-09-10 21:57:24','2021-09-10 21:57:24','','IMG_20201230_220709_461','','inherit','open','closed','','img_20201230_220709_461','','','2021-09-10 21:57:24','2021-09-10 21:57:24','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg',0,'attachment','image/jpeg',0),(2992,1,'2021-09-10 21:57:51','2021-09-10 21:57:51','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"768\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-492x369.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"741\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-768x556.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1536x1111.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-2048x1482.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-492x356.jpg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:57:51','2021-09-10 21:57:51','',2808,'https://candc117.dev34.info/?p=2992',0,'revision','',0),(2993,1,'2021-09-10 21:57:51','2021-09-10 21:57:51','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"575\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"768\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-492x369.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"741\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-768x556.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1536x1111.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-2048x1482.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-492x356.jpg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 21:57:51','2021-09-10 21:57:51','',2808,'https://candc117.dev34.info/?p=2993',0,'revision','',0),(2995,1,'2021-09-10 21:58:45','2021-09-10 21:58:45','','IMG_20201230_220709_461 (1)','','inherit','open','closed','','img_20201230_220709_461-1','','','2021-09-10 21:58:45','2021-09-10 21:58:45','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg',0,'attachment','image/jpeg',0),(2997,1,'2021-09-10 22:00:49','2021-09-10 22:00:49','','IMG_20210118_214223_577 (1)','','inherit','open','closed','','img_20210118_214223_577-1','','','2021-09-10 22:00:49','2021-09-10 22:00:49','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg',0,'attachment','image/jpeg',0),(2998,1,'2021-09-10 22:01:59','2021-09-10 22:01:59','','jeep lighting (1)','','inherit','open','closed','','jeep-lighting-1','','','2021-09-10 22:01:59','2021-09-10 22:01:59','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg',0,'attachment','image/jpeg',0),(2999,1,'2021-09-10 22:02:50','2021-09-10 22:02:50','','jeep lighting (2)','','inherit','open','closed','','jeep-lighting-2','','','2021-09-10 22:02:50','2021-09-10 22:02:50','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg',0,'attachment','image/jpeg',0),(3000,1,'2021-09-10 22:03:45','2021-09-10 22:03:45','','20210113_145529 (1) (1)','','inherit','open','closed','','20210113_145529-1-1','','','2021-09-10 22:03:45','2021-09-10 22:03:45','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg',0,'attachment','image/jpeg',0),(3001,1,'2021-09-10 22:04:04','2021-09-10 22:04:04','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"1024\" height=\"768\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-492x369.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"741\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-768x556.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1536x1111.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-2048x1482.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-492x356.jpg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:04:04','2021-09-10 22:04:04','',2808,'https://candc117.dev34.info/?p=3001',0,'revision','',0),(3002,1,'2021-09-10 22:04:04','2021-09-10 22:04:04','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"1024\" height=\"768\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-492x369.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"1024\" height=\"576\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1024x576.jpeg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1536x864.jpeg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting.jpeg 2000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n															<img width=\"1024\" height=\"741\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1024x741.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-768x556.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1536x1111.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-2048x1482.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-492x356.jpg 492w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:04:04','2021-09-10 22:04:04','',2808,'https://candc117.dev34.info/?p=3002',0,'revision','',0),(3008,1,'2021-09-10 22:07:22','2021-09-10 22:07:22','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:07:22','2021-09-10 22:07:22','',2808,'https://candc117.dev34.info/?p=3008',0,'revision','',0),(3005,1,'2021-09-10 22:06:57','2021-09-10 22:06:57','','Quad bike with two sportsman rushes through field in the dust','Quad bike with two sportsman rushes through the field in the dust. The concept of speed and freedom.','inherit','open','closed','','quad-bike-with-two-sportsman-rushes-through-field-in-the-dust','','','2021-09-10 22:06:57','2021-09-10 22:06:57','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/quad-bike-with-two-sportsman-rushes-through-field-YB3GSLJ.jpg',0,'attachment','image/jpeg',0),(3006,1,'2021-09-10 22:07:21','2021-09-10 22:07:21','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:07:21','2021-09-10 22:07:21','',2808,'https://candc117.dev34.info/?p=3006',0,'revision','',0),(3007,1,'2021-09-10 22:07:22','2021-09-10 22:07:22','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:07:22','2021-09-10 22:07:22','',2808,'https://candc117.dev34.info/?p=3007',0,'revision','',0),(3009,1,'2021-09-10 22:09:50','2021-09-10 22:09:50','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:09:50','2021-09-10 22:09:50','',2808,'https://candc117.dev34.info/?p=3009',0,'revision','',0),(3010,1,'2021-09-10 22:09:50','2021-09-10 22:09:50','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n				<h3>\n						Integrity					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Reliability					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<h3>\n						Quality Service					\n				</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:09:50','2021-09-10 22:09:50','',2808,'https://candc117.dev34.info/?p=3010',0,'revision','',0),(3012,1,'2021-09-10 22:10:01','2021-09-10 22:10:01','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:10:01','2021-09-10 22:10:01','',2808,'https://candc117.dev34.info/?p=3012',0,'revision','',0),(3013,1,'2021-09-10 22:10:01','2021-09-10 22:10:01','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:10:01','2021-09-10 22:10:01','',2808,'https://candc117.dev34.info/?p=3013',0,'revision','',0),(3014,1,'2021-09-10 22:10:01','2021-09-10 22:10:01','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:10:01','2021-09-10 22:10:01','',2808,'https://candc117.dev34.info/?p=3014',0,'revision','',0),(3015,1,'2021-09-10 22:10:29','2021-09-10 22:10:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:10:29','2021-09-10 22:10:29','',2808,'https://candc117.dev34.info/?p=3015',0,'revision','',0),(3016,1,'2021-09-10 22:10:29','2021-09-10 22:10:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:10:29','2021-09-10 22:10:29','',2808,'https://candc117.dev34.info/?p=3016',0,'revision','',0),(3017,1,'2021-09-10 22:10:29','2021-09-10 22:10:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:10:29','2021-09-10 22:10:29','',2808,'https://candc117.dev34.info/?p=3017',0,'revision','',0),(3018,1,'2021-09-10 22:14:04','2021-09-10 22:14:04','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:14:04','2021-09-10 22:14:04','',2808,'https://candc117.dev34.info/?p=3018',0,'revision','',0),(3019,1,'2021-09-10 22:14:04','2021-09-10 22:14:04','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:14:04','2021-09-10 22:14:04','',2808,'https://candc117.dev34.info/?p=3019',0,'revision','',0),(3020,1,'2021-09-10 22:14:04','2021-09-10 22:14:04','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:14:04','2021-09-10 22:14:04','',2808,'https://candc117.dev34.info/?p=3020',0,'revision','',0),(3021,1,'2021-09-10 22:15:05','2021-09-10 22:15:05','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:15:05','2021-09-10 22:15:05','',2808,'https://candc117.dev34.info/?p=3021',0,'revision','',0),(3022,1,'2021-09-10 22:15:05','2021-09-10 22:15:05','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:15:05','2021-09-10 22:15:05','',2808,'https://candc117.dev34.info/?p=3022',0,'revision','',0),(3023,1,'2021-09-10 22:15:05','2021-09-10 22:15:05','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:15:05','2021-09-10 22:15:05','',2808,'https://candc117.dev34.info/?p=3023',0,'revision','',0),(3024,1,'2021-09-10 22:15:19','2021-09-10 22:15:19','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:15:19','2021-09-10 22:15:19','',2808,'https://candc117.dev34.info/?p=3024',0,'revision','',0),(3025,1,'2021-09-10 22:15:19','2021-09-10 22:15:19','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:15:19','2021-09-10 22:15:19','',2808,'https://candc117.dev34.info/?p=3025',0,'revision','',0),(3026,1,'2021-09-10 22:15:20','2021-09-10 22:15:20','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:15:20','2021-09-10 22:15:20','',2808,'https://candc117.dev34.info/?p=3026',0,'revision','',0),(3027,1,'2021-09-10 22:18:16','2021-09-10 22:18:16','','C48CCAE8- (1)','','inherit','open','closed','','c48ccae8-1','','','2021-09-10 22:18:16','2021-09-10 22:18:16','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg',0,'attachment','image/jpeg',0),(3028,1,'2021-09-10 22:23:21','2021-09-10 22:23:21','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:23:21','2021-09-10 22:23:21','',2808,'https://candc117.dev34.info/?p=3028',0,'revision','',0),(3029,1,'2021-09-10 22:23:21','2021-09-10 22:23:21','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:23:21','2021-09-10 22:23:21','',2808,'https://candc117.dev34.info/?p=3029',0,'revision','',0),(3030,1,'2021-09-10 22:23:21','2021-09-10 22:23:21','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:23:21','2021-09-10 22:23:21','',2808,'https://candc117.dev34.info/?p=3030',0,'revision','',0),(3034,1,'2021-09-10 22:26:17','2021-09-10 22:26:17','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:26:17','2021-09-10 22:26:17','',2808,'https://candc117.dev34.info/?p=3034',0,'revision','',0),(3032,1,'2021-09-10 22:26:16','2021-09-10 22:26:16','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:26:16','2021-09-10 22:26:16','',2808,'https://candc117.dev34.info/?p=3032',0,'revision','',0),(3033,1,'2021-09-10 22:26:16','2021-09-10 22:26:16','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:26:16','2021-09-10 22:26:16','',2808,'https://candc117.dev34.info/?p=3033',0,'revision','',0),(3035,1,'2021-09-10 22:28:14','2021-09-10 22:28:14','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:28:14','2021-09-10 22:28:14','',2808,'https://candc117.dev34.info/?p=3035',0,'revision','',0),(3036,1,'2021-09-10 22:28:14','2021-09-10 22:28:14','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:28:14','2021-09-10 22:28:14','',2808,'https://candc117.dev34.info/?p=3036',0,'revision','',0),(3037,1,'2021-09-10 22:28:14','2021-09-10 22:28:14','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:28:14','2021-09-10 22:28:14','',2808,'https://candc117.dev34.info/?p=3037',0,'revision','',0),(3046,1,'2021-09-10 22:33:45','2021-09-10 22:33:45','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:33:45','2021-09-10 22:33:45','',2808,'https://candc117.dev34.info/?p=3046',0,'revision','',0),(3042,1,'2021-09-10 22:31:02','2021-09-10 22:31:02','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"1024\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1024x1024.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-768x768.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-100x100.jpg 100w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:31:02','2021-09-10 22:31:02','',2808,'https://candc117.dev34.info/?p=3042',0,'revision','',0),(3039,1,'2021-09-10 22:30:41','2021-09-10 22:30:41','','IMG_20200912_164715_198','','inherit','open','closed','','img_20200912_164715_198','','','2021-09-10 22:30:41','2021-09-10 22:30:41','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198.jpg',0,'attachment','image/jpeg',0),(3040,1,'2021-09-10 22:31:01','2021-09-10 22:31:01','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:31:01','2021-09-10 22:31:01','',2808,'https://candc117.dev34.info/?p=3040',0,'revision','',0),(3041,1,'2021-09-10 22:31:01','2021-09-10 22:31:01','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"640\" height=\"480\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1.jpg 640w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/C48CCAE8-1-492x369.jpg 492w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:31:01','2021-09-10 22:31:01','',2808,'https://candc117.dev34.info/?p=3041',0,'revision','',0),(3043,1,'2021-09-10 22:32:51','2021-09-10 22:32:51','','IMG_20200912_164715_198 (1)','','inherit','open','closed','','img_20200912_164715_198-1','','','2021-09-10 22:32:51','2021-09-10 22:32:51','',2808,'https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg',0,'attachment','image/jpeg',0),(3044,1,'2021-09-10 22:33:44','2021-09-10 22:33:44','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"1024\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1024x1024.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-768x768.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-100x100.jpg 100w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:33:44','2021-09-10 22:33:44','',2808,'https://candc117.dev34.info/?p=3044',0,'revision','',0),(3045,1,'2021-09-10 22:33:44','2021-09-10 22:33:44','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"1024\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1024x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1024x1024.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-768x768.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-100x100.jpg 100w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:33:44','2021-09-10 22:33:44','',2808,'https://candc117.dev34.info/?p=3045',0,'revision','',0),(3047,1,'2021-09-10 22:34:37','2021-09-10 22:34:37','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:34:37','2021-09-10 22:34:37','',2808,'https://candc117.dev34.info/?p=3047',0,'revision','',0),(3048,1,'2021-09-10 22:34:37','2021-09-10 22:34:37','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:34:37','2021-09-10 22:34:37','',2808,'https://candc117.dev34.info/?p=3048',0,'revision','',0),(3049,1,'2021-09-10 22:34:37','2021-09-10 22:34:37','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:34:37','2021-09-10 22:34:37','',2808,'https://candc117.dev34.info/?p=3049',0,'revision','',0),(3050,1,'2021-09-10 22:34:52','2021-09-10 22:34:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:34:52','2021-09-10 22:34:52','',2808,'https://candc117.dev34.info/?p=3050',0,'revision','',0),(3051,1,'2021-09-10 22:34:52','2021-09-10 22:34:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:34:52','2021-09-10 22:34:52','',2808,'https://candc117.dev34.info/?p=3051',0,'revision','',0),(3052,1,'2021-09-10 22:34:52','2021-09-10 22:34:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-10 22:34:52','2021-09-10 22:34:52','',2808,'https://candc117.dev34.info/?p=3052',0,'revision','',0),(3053,1,'2021-09-11 05:27:38','2021-09-11 05:27:38','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:27:38','2021-09-11 05:27:38','',2808,'https://candc117.dev34.info/?p=3053',0,'revision','',0),(3054,1,'2021-09-11 05:27:38','2021-09-11 05:27:38','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV\'s</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Trucks</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeeps</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV\'s</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:27:38','2021-09-11 05:27:38','',2808,'https://candc117.dev34.info/?p=3054',0,'revision','',0),(3061,1,'2021-09-11 05:31:29','2021-09-11 05:31:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:31:29','2021-09-11 05:31:29','',2808,'https://candc117.dev34.info/?p=3061',0,'revision','',0),(3055,1,'2021-09-11 05:27:38','2021-09-11 05:27:38','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:27:38','2021-09-11 05:27:38','',2808,'https://candc117.dev34.info/?p=3055',0,'revision','',0),(3056,1,'2021-09-11 05:29:08','2021-09-11 05:29:08','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:29:08','2021-09-11 05:29:08','',2808,'https://candc117.dev34.info/?p=3056',0,'revision','',0),(3057,1,'2021-09-11 05:29:08','2021-09-11 05:29:08','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:29:08','2021-09-11 05:29:08','',2808,'https://candc117.dev34.info/?p=3057',0,'revision','',0),(3058,1,'2021-09-11 05:29:08','2021-09-11 05:29:08','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:29:08','2021-09-11 05:29:08','',2808,'https://candc117.dev34.info/?p=3058',0,'revision','',0),(3059,1,'2021-09-11 05:31:29','2021-09-11 05:31:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:31:29','2021-09-11 05:31:29','',2808,'https://candc117.dev34.info/?p=3059',0,'revision','',0),(3060,1,'2021-09-11 05:31:29','2021-09-11 05:31:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client\n			<p>Pages</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/about-us/\">\n											About us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/contact/\">\n											Contact us \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/blog/\">\n											Blog\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/shop/\">\n											Shop\n											</a>\n									</li>\n						</ul>\n			<p>Product</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/bed-room/\">\n											Bed Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/dining-room/\">\n											Dining Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/kitchen/\">\n											Kitchen\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/living-room/\">\n											Living Room\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/product-category/office/\">\n											Office\n											</a>\n									</li>\n						</ul>\n			<p>Article</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/business/\">\n											Business\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/cyber-security/\">\n											Cyber Security\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/gaming/\">\n											Gaming\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/category/marketing/\">\n											Marketing\n											</a>\n									</li>\n						</ul>\n			<p>Legal</p>		\n					<ul>\n							<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/privacy-policy/\">\n											Privacy Policy \n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/terms-conditions/\">\n											Terms & Conditions\n											</a>\n									</li>\n								<li>\n											<a href=\"https://finestdevs.com/demos/wp/shadepro/return-policy/\">\n											Return Policy\n											</a>\n									</li>\n						</ul>\n			<p>Contact us</p>		\n					<ul>\n							<li>\n											<a href=\"mailto:+133-394-3439-1435\">\n											support@grayic.com \n											</a>\n									</li>\n								<li>\n											<a href=\"tel:+133-394-3439-1435\">\n											+133-394-3439-1435\n											</a>\n									</li>\n						</ul>\n		<p>© 2020 Copyright, All Right Reserved, Made by Grayic with <img src=\"https://finestdevs.com/demos/wp/shadepro/wp-content/uploads/2020/08/heart-2.svg\" alt=\"\" /></p>		\n					<a href=\"https://twitter.com\" target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"https://facebook.com/grayic\" target=\"_blank\" rel=\"noopener\">\n						Facebook-square\n											</a>\n					<a href=\"https://instagram.com\" target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a href=\"https://linkedin.com\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n											</a>','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:31:29','2021-09-11 05:31:29','',2808,'https://candc117.dev34.info/?p=3060',0,'revision','',0);
INSERT INTO `wp9l_posts` VALUES (3062,1,'2021-09-11 05:42:56','2021-09-11 05:42:56','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:42:56','2021-09-11 05:42:56','',2808,'https://candc117.dev34.info/?p=3062',0,'revision','',0),(3063,1,'2021-09-11 05:42:56','2021-09-11 05:42:56','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Fleet of Offroad Vehicles</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:42:56','2021-09-11 05:42:56','',2808,'https://candc117.dev34.info/?p=3063',0,'revision','',0),(3064,1,'2021-09-11 05:42:57','2021-09-11 05:42:57','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-09-11 05:42:57','2021-09-11 05:42:57','',2808,'https://candc117.dev34.info/?p=3064',0,'revision','',0),(3065,1,'2021-09-11 05:57:55','2021-09-11 05:57:55','<img width=\"434\" height=\"166\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png 434w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM-300x115.png 300w\" sizes=\"(max-width: 434px) 100vw, 434px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Everett, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"https://candc117.dev34.info/our-services\">Our Services</a></li>\n<li id=\"menu-item-2892\"><a href=\"https://candc117.dev34.info/about-us/\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"https://candc117.dev34.info/contact-us/\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','publish','closed','closed','','footer-main-1','','','2021-10-20 00:01:10','2021-10-20 00:01:10','',0,'https://candc117.dev34.info/?post_type=shadepro_footer&#038;p=3065',0,'shadepro_footer','',0),(3066,1,'2021-09-11 05:57:55','2021-09-11 05:57:55','','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 05:57:55','2021-09-11 05:57:55','',3065,'https://candc117.dev34.info/?p=3066',0,'revision','',0),(3067,1,'2021-09-11 05:58:20','2021-09-11 05:58:20','','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 05:58:20','2021-09-11 05:58:20','',3065,'https://candc117.dev34.info/?p=3067',0,'revision','',0),(3068,1,'2021-09-11 06:01:44','2021-09-11 06:01:44','','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:01:44','2021-09-11 06:01:44','',3065,'https://candc117.dev34.info/?p=3068',0,'revision','',0),(3069,1,'2021-09-11 06:01:44','2021-09-11 06:01:44','','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:01:44','2021-09-11 06:01:44','',3065,'https://candc117.dev34.info/?p=3069',0,'revision','',0),(3070,1,'2021-09-11 06:01:44','2021-09-11 06:01:44','<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:01:44','2021-09-11 06:01:44','',3065,'https://candc117.dev34.info/?p=3070',0,'revision','',0),(3071,1,'2021-09-11 06:06:14','2021-09-11 06:06:14','<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:06:14','2021-09-11 06:06:14','',3065,'https://candc117.dev34.info/?p=3071',0,'revision','',0),(3072,1,'2021-09-11 06:06:14','2021-09-11 06:06:14','<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:06:14','2021-09-11 06:06:14','',3065,'https://candc117.dev34.info/?p=3072',0,'revision','',0),(3073,1,'2021-09-11 06:06:14','2021-09-11 06:06:14','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:06:14','2021-09-11 06:06:14','',3065,'https://candc117.dev34.info/?p=3073',0,'revision','',0),(3074,1,'2021-09-11 06:07:16','2021-09-11 06:07:16','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:07:16','2021-09-11 06:07:16','',3065,'https://candc117.dev34.info/?p=3074',0,'revision','',0),(3075,1,'2021-09-11 06:07:16','2021-09-11 06:07:16','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:07:16','2021-09-11 06:07:16','',3065,'https://candc117.dev34.info/?p=3075',0,'revision','',0),(3076,1,'2021-09-11 06:07:17','2021-09-11 06:07:17','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:07:17','2021-09-11 06:07:17','',3065,'https://candc117.dev34.info/?p=3076',0,'revision','',0),(3077,1,'2021-09-11 06:08:47','2021-09-11 06:08:47','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:08:47','2021-09-11 06:08:47','',3065,'https://candc117.dev34.info/?p=3077',0,'revision','',0),(3078,1,'2021-09-11 06:08:47','2021-09-11 06:08:47','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:08:47','2021-09-11 06:08:47','',3065,'https://candc117.dev34.info/?p=3078',0,'revision','',0),(3079,1,'2021-09-11 06:08:47','2021-09-11 06:08:47','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:08:47','2021-09-11 06:08:47','',3065,'https://candc117.dev34.info/?p=3079',0,'revision','',0),(3080,1,'2021-09-11 06:10:06','2021-09-11 06:10:06','','ssl 7117','','inherit','open','closed','','ssl-7117','','','2021-09-11 06:10:06','2021-09-11 06:10:06','',3065,'https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png',0,'attachment','image/png',0),(3081,1,'2021-09-11 06:10:18','2021-09-11 06:10:18','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:10:18','2021-09-11 06:10:18','',3065,'https://candc117.dev34.info/?p=3081',0,'revision','',0),(3082,1,'2021-09-11 06:10:18','2021-09-11 06:10:18','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:10:18','2021-09-11 06:10:18','',3065,'https://candc117.dev34.info/?p=3082',0,'revision','',0),(3083,1,'2021-09-11 06:10:18','2021-09-11 06:10:18','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Navigation:</h2>		\n															<img width=\"411\" height=\"123\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png 411w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117-300x90.png 300w\" sizes=\"(max-width: 411px) 100vw, 411px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:10:18','2021-09-11 06:10:18','',3065,'https://candc117.dev34.info/?p=3083',0,'revision','',0),(3084,1,'2021-09-11 06:10:36','2021-09-11 06:10:36','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Navigation:</h2>		\n															<img width=\"411\" height=\"123\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png 411w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117-300x90.png 300w\" sizes=\"(max-width: 411px) 100vw, 411px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:10:36','2021-09-11 06:10:36','',3065,'https://candc117.dev34.info/?p=3084',0,'revision','',0),(3085,1,'2021-09-11 06:10:36','2021-09-11 06:10:36','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Navigation:</h2>		\n															<img width=\"411\" height=\"123\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png 411w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117-300x90.png 300w\" sizes=\"(max-width: 411px) 100vw, 411px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:10:36','2021-09-11 06:10:36','',3065,'https://candc117.dev34.info/?p=3085',0,'revision','',0),(3086,1,'2021-09-11 06:10:36','2021-09-11 06:10:36','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Navigation:</h2>		\n															<img width=\"411\" height=\"123\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png 411w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117-300x90.png 300w\" sizes=\"(max-width: 411px) 100vw, 411px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:10:36','2021-09-11 06:10:36','',3065,'https://candc117.dev34.info/?p=3086',0,'revision','',0),(3087,1,'2021-09-11 06:11:36','2021-09-11 06:11:36','','ssl','','inherit','open','closed','','ssl','','','2021-09-11 06:11:36','2021-09-11 06:11:36','',3065,'https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-.png',0,'attachment','image/png',0),(3088,1,'2021-09-11 06:12:40','2021-09-11 06:12:40','','ssl3','','inherit','open','closed','','ssl3','','','2021-09-11 06:12:40','2021-09-11 06:12:40','',3065,'https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png',0,'attachment','image/png',0),(3113,1,'2021-09-13 18:05:19','2021-09-13 18:05:19','<img width=\"434\" height=\"166\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png 434w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM-300x115.png 300w\" sizes=\"(max-width: 434px) 100vw, 434px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-13 18:05:19','2021-09-13 18:05:19','',3065,'https://candc117.dev34.info/?p=3113',0,'revision','',0),(3092,1,'2021-09-11 06:13:17','2021-09-11 06:13:17','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:13:17','2021-09-11 06:13:17','',3065,'https://candc117.dev34.info/?p=3092',0,'revision','',0),(3090,1,'2021-09-11 06:13:17','2021-09-11 06:13:17','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Navigation:</h2>		\n															<img width=\"411\" height=\"123\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png 411w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117-300x90.png 300w\" sizes=\"(max-width: 411px) 100vw, 411px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:13:17','2021-09-11 06:13:17','',3065,'https://candc117.dev34.info/?p=3090',0,'revision','',0),(3091,1,'2021-09-11 06:13:17','2021-09-11 06:13:17','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Navigation:</h2>		\n															<img width=\"411\" height=\"123\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117.png 411w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl-7117-300x90.png 300w\" sizes=\"(max-width: 411px) 100vw, 411px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:13:17','2021-09-11 06:13:17','',3065,'https://candc117.dev34.info/?p=3091',0,'revision','',0),(3093,1,'2021-09-11 06:16:39','2021-09-11 06:16:39','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:16:39','2021-09-11 06:16:39','',3065,'https://candc117.dev34.info/?p=3093',0,'revision','',0),(3094,1,'2021-09-11 06:16:39','2021-09-11 06:16:39','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:16:39','2021-09-11 06:16:39','',3065,'https://candc117.dev34.info/?p=3094',0,'revision','',0),(3095,1,'2021-09-11 06:16:39','2021-09-11 06:16:39','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:16:39','2021-09-11 06:16:39','',3065,'https://candc117.dev34.info/?p=3095',0,'revision','',0),(3096,1,'2021-09-11 06:17:50','2021-09-11 06:17:50','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:17:50','2021-09-11 06:17:50','',3065,'https://candc117.dev34.info/?p=3096',0,'revision','',0),(3097,1,'2021-09-11 06:17:51','2021-09-11 06:17:51','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Navigation:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:17:51','2021-09-11 06:17:51','',3065,'https://candc117.dev34.info/?p=3097',0,'revision','',0),(3098,1,'2021-09-11 06:17:51','2021-09-11 06:17:51','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 06:17:51','2021-09-11 06:17:51','',3065,'https://candc117.dev34.info/?p=3098',0,'revision','',0),(3099,1,'2021-09-11 23:46:47','2021-09-11 23:46:47','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 23:46:47','2021-09-11 23:46:47','',3065,'https://candc117.dev34.info/?p=3099',0,'revision','',0),(3100,1,'2021-09-11 23:46:48','2021-09-11 23:46:48','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 23:46:48','2021-09-11 23:46:48','',3065,'https://candc117.dev34.info/?p=3100',0,'revision','',0),(3101,1,'2021-09-11 23:46:48','2021-09-11 23:46:48','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 23:46:48','2021-09-11 23:46:48','',3065,'https://candc117.dev34.info/?p=3101',0,'revision','',0),(3102,1,'2021-09-11 23:47:13','2021-09-11 23:47:13','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 23:47:13','2021-09-11 23:47:13','',3065,'https://candc117.dev34.info/?p=3102',0,'revision','',0),(3103,1,'2021-09-11 23:47:13','2021-09-11 23:47:13','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 23:47:13','2021-09-11 23:47:13','',3065,'https://candc117.dev34.info/?p=3103',0,'revision','',0),(3104,1,'2021-09-11 23:47:13','2021-09-11 23:47:13','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-11 23:47:13','2021-09-11 23:47:13','',3065,'https://candc117.dev34.info/?p=3104',0,'revision','',0),(3105,1,'2021-09-13 04:20:57','2021-09-13 04:20:57','','candc-motorsports','','inherit','open','closed','','candc-motorsports','','','2021-09-13 04:20:57','2021-09-13 04:20:57','',0,'https://candc117.dev34.info/wp-content/uploads/2021/09/candc-motorsports.jpg',0,'attachment','image/jpeg',0),(3106,1,'2021-09-13 18:03:27','2021-09-13 18:03:27','','Screen Shot 2021-09-13 at 11.02.15 AM','','inherit','open','closed','','screen-shot-2021-09-13-at-11-02-15-am','','','2021-09-13 18:03:27','2021-09-13 18:03:27','',2811,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.02.15-AM.png',0,'attachment','image/png',0),(3107,1,'2021-09-13 18:04:29','2021-09-13 18:04:29','','Screen Shot 2021-09-13 at 11.04.03 AM','','inherit','open','closed','','screen-shot-2021-09-13-at-11-04-03-am','','','2021-09-13 18:04:29','2021-09-13 18:04:29','',2811,'https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png',0,'attachment','image/png',0),(3108,1,'2021-09-13 18:04:37','2021-09-13 18:04:37','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-13 18:04:37','2021-09-13 18:04:37','',2811,'https://candc117.dev34.info/?p=3108',0,'revision','',0),(3109,1,'2021-09-13 18:04:37','2021-09-13 18:04:37','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-09-13 18:04:37','2021-09-13 18:04:37','',2811,'https://candc117.dev34.info/?p=3109',0,'revision','',0),(3111,1,'2021-09-13 18:05:19','2021-09-13 18:05:19','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-13 18:05:19','2021-09-13 18:05:19','',3065,'https://candc117.dev34.info/?p=3111',0,'revision','',0),(3112,1,'2021-09-13 18:05:19','2021-09-13 18:05:19','<img width=\"676\" height=\"150\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM.png 676w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-300x67.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.04.34-AM-492x109.png 492w\" sizes=\"(max-width: 676px) 100vw, 676px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-09-13 18:05:19','2021-09-13 18:05:19','',3065,'https://candc117.dev34.info/?p=3112',0,'revision','',0),(3231,1,'2021-10-20 00:00:18','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-10-20 00:00:18','0000-00-00 00:00:00','',0,'https://candc117.dev34.info/?p=3231',0,'post','',0),(3115,1,'2021-10-05 23:54:35','2021-10-05 23:54:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-05 23:54:35','2021-10-05 23:54:35','',2808,'https://candc117.dev34.info/?p=3115',0,'revision','',0),(3116,1,'2021-10-05 23:54:35','2021-10-05 23:54:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C and C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-05 23:54:35','2021-10-05 23:54:35','',2808,'https://candc117.dev34.info/?p=3116',0,'revision','',0),(3117,1,'2021-10-05 23:54:35','2021-10-05 23:54:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-05 23:54:35','2021-10-05 23:54:35','',2808,'https://candc117.dev34.info/?p=3117',0,'revision','',0),(3121,1,'2021-10-06 02:04:53','2021-10-06 02:04:53','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:04:53','2021-10-06 02:04:53','',2,'https://candc117.dev34.info/?p=3121',0,'revision','',0),(3119,1,'2021-10-06 02:04:53','2021-10-06 02:04:53','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://candc117.dev34.info/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:04:53','2021-10-06 02:04:53','',2,'https://candc117.dev34.info/?p=3119',0,'revision','',0),(3120,1,'2021-10-06 02:04:53','2021-10-06 02:04:53','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://candc117.dev34.info/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:04:53','2021-10-06 02:04:53','',2,'https://candc117.dev34.info/?p=3120',0,'revision','',0),(3122,1,'2021-10-06 02:08:49','2021-10-06 02:08:49','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:08:49','2021-10-06 02:08:49','',2,'https://candc117.dev34.info/?p=3122',0,'revision','',0),(3123,1,'2021-10-06 02:08:50','2021-10-06 02:08:50','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:08:50','2021-10-06 02:08:50','',2,'https://candc117.dev34.info/?p=3123',0,'revision','',0),(3124,1,'2021-10-06 02:08:50','2021-10-06 02:08:50','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:08:50','2021-10-06 02:08:50','',2,'https://candc117.dev34.info/?p=3124',0,'revision','',0),(3128,1,'2021-10-06 02:14:40','2021-10-06 02:14:40','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"432\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:14:40','2021-10-06 02:14:40','',2,'https://candc117.dev34.info/?p=3128',0,'revision','',0),(3126,1,'2021-10-06 02:14:40','2021-10-06 02:14:40','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:14:40','2021-10-06 02:14:40','',2,'https://candc117.dev34.info/?p=3126',0,'revision','',0),(3127,1,'2021-10-06 02:14:40','2021-10-06 02:14:40','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:14:40','2021-10-06 02:14:40','',2,'https://candc117.dev34.info/?p=3127',0,'revision','',0),(3147,1,'2021-10-06 03:49:21','2021-10-06 03:49:21','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','Our Services','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 03:49:21','2021-10-06 03:49:21','',2,'https://candc117.dev34.info/?p=3147',0,'revision','',0),(3132,1,'2021-10-06 02:27:36','2021-10-06 02:27:36','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"740\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg 740w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-300x203.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-492x332.jpeg 492w\" sizes=\"(max-width: 740px) 100vw, 740px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-300x245.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-492x402.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:27:36','2021-10-06 02:27:36','',2,'https://candc117.dev34.info/?p=3132',0,'revision','',0),(3130,1,'2021-10-06 02:27:36','2021-10-06 02:27:36','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"432\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:27:36','2021-10-06 02:27:36','',2,'https://candc117.dev34.info/?p=3130',0,'revision','',0),(3131,1,'2021-10-06 02:27:36','2021-10-06 02:27:36','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"432\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h2>Truck Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:27:36','2021-10-06 02:27:36','',2,'https://candc117.dev34.info/?p=3131',0,'revision','',0),(3143,1,'2021-10-06 03:47:28','2021-10-06 03:47:28','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 03:47:28','2021-10-06 03:47:28','',2,'https://candc117.dev34.info/?p=3143',0,'revision','',0),(3136,1,'2021-10-06 02:34:34','2021-10-06 02:34:34','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"740\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg 740w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-300x203.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-492x332.jpeg 492w\" sizes=\"(max-width: 740px) 100vw, 740px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-300x245.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-492x402.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:34:34','2021-10-06 02:34:34','',2,'https://candc117.dev34.info/?p=3136',0,'revision','',0),(3134,1,'2021-10-06 02:34:34','2021-10-06 02:34:34','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"740\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg 740w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-300x203.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-492x332.jpeg 492w\" sizes=\"(max-width: 740px) 100vw, 740px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-300x245.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-492x402.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:34:34','2021-10-06 02:34:34','',2,'https://candc117.dev34.info/?p=3134',0,'revision','',0),(3135,1,'2021-10-06 02:34:34','2021-10-06 02:34:34','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"740\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg 740w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-300x203.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-492x332.jpeg 492w\" sizes=\"(max-width: 740px) 100vw, 740px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-300x245.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-492x402.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 02:34:34','2021-10-06 02:34:34','',2,'https://candc117.dev34.info/?p=3135',0,'revision','',0),(3137,1,'2021-10-06 03:45:43','2021-10-06 03:45:43','','Lifted truck','','inherit','open','closed','','pexels-scosche-1149056-1','','','2021-10-06 03:45:49','2021-10-06 03:45:49','',2,'https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg',0,'attachment','image/jpeg',0),(3138,1,'2021-10-06 03:46:14','2021-10-06 03:46:14','','Lifted Jeep','','inherit','open','closed','','jeep-pic-1-1','','','2021-10-06 03:46:22','2021-10-06 03:46:22','',2,'https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg',0,'attachment','image/jpeg',0),(3139,1,'2021-10-06 03:46:37','2021-10-06 03:46:37','','C48CCAE8- (2)','','inherit','open','closed','','c48ccae8-2','','','2021-10-06 03:46:37','2021-10-06 03:46:37','',2,'https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg',0,'attachment','image/jpeg',0),(3140,1,'2021-10-06 03:46:50','2021-10-06 03:46:50','','lifted-tahoe-1 (1)','','inherit','open','closed','','lifted-tahoe-1-1','','','2021-10-06 03:46:50','2021-10-06 03:46:50','',2,'https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg',0,'attachment','image/jpeg',0),(3141,1,'2021-10-06 03:47:28','2021-10-06 03:47:28','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"740\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg 740w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-300x203.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-492x332.jpeg 492w\" sizes=\"(max-width: 740px) 100vw, 740px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-300x245.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-492x402.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 03:47:28','2021-10-06 03:47:28','',2,'https://candc117.dev34.info/?p=3141',0,'revision','',0),(3142,1,'2021-10-06 03:47:28','2021-10-06 03:47:28','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"768\" height=\"431\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--768x431.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--300x168.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1--492x276.jpeg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/truck-suspension-1-.jpeg 1024w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n															<img width=\"740\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1.jpeg 740w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-300x203.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-1-492x332.jpeg 492w\" sizes=\"(max-width: 740px) 100vw, 740px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"720\" height=\"720\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-300x300.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-150x150.jpg 150w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-255x255.jpg 255w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-492x492.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-100x100.jpg 100w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-300x245.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1-492x402.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 03:47:28','2021-10-06 03:47:28','',2,'https://candc117.dev34.info/?p=3142',0,'revision','',0),(3144,1,'2021-10-06 03:47:49','2021-10-06 03:47:49','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 03:47:49','2021-10-06 03:47:49','',2,'https://candc117.dev34.info/?p=3144',0,'revision','',0),(3145,1,'2021-10-06 03:47:49','2021-10-06 03:47:49','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 03:47:49','2021-10-06 03:47:49','',2,'https://candc117.dev34.info/?p=3145',0,'revision','',0),(3146,1,'2021-10-06 03:47:50','2021-10-06 03:47:50','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2021-10-06 03:47:50','2021-10-06 03:47:50','',2,'https://candc117.dev34.info/?p=3146',0,'revision','',0),(3148,1,'2021-10-06 03:51:07','2021-10-06 03:51:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 03:51:07','2021-10-06 03:51:07','',2808,'https://candc117.dev34.info/?p=3148',0,'revision','',0),(3149,1,'2021-10-06 03:51:07','2021-10-06 03:51:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C and C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C and C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact CandC today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C and C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C and C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C and C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C and C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C and C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C and C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 03:51:07','2021-10-06 03:51:07','',2808,'https://candc117.dev34.info/?p=3149',0,'revision','',0),(3150,1,'2021-10-06 03:51:07','2021-10-06 03:51:07','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 03:51:07','2021-10-06 03:51:07','',2808,'https://candc117.dev34.info/?p=3150',0,'revision','',0),(3151,1,'2021-10-06 03:54:52','2021-10-06 03:54:52','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','publish','closed','open','','contact-us','','','2021-10-06 04:24:23','2021-10-06 04:24:23','',0,'https://candc117.dev34.info/?page_id=3151',0,'page','',0),(3158,1,'2021-10-06 04:11:49','2021-10-06 04:11:49','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:11:49','2021-10-06 04:11:49','',3151,'https://candc117.dev34.info/?p=3158',0,'revision','',0),(3159,1,'2021-10-06 04:12:20','2021-10-06 04:12:20','<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact us block','','publish','closed','closed','','contact-us-block','','','2021-10-06 04:12:20','2021-10-06 04:12:20','',0,'https://candc117.dev34.info/?elementor_library=contact-us-block',0,'elementor_library','',0),(3160,1,'2021-10-06 04:12:20','2021-10-06 04:12:20','','Contact us block','','inherit','closed','closed','','3159-revision-v1','','','2021-10-06 04:12:20','2021-10-06 04:12:20','',3159,'https://candc117.dev34.info/?p=3160',0,'revision','',0),(3161,1,'2021-10-06 04:12:20','2021-10-06 04:12:20','<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact us block','','inherit','closed','closed','','3159-revision-v1','','','2021-10-06 04:12:20','2021-10-06 04:12:20','',3159,'https://candc117.dev34.info/?p=3161',0,'revision','',0),(3152,1,'2021-10-06 03:54:52','2021-10-06 03:54:52','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 03:54:52','2021-10-06 03:54:52','',3151,'https://candc117.dev34.info/?p=3152',0,'revision','',0),(3153,1,'2021-10-06 03:55:24','2021-10-06 03:55:24','<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Contact body from services page','','publish','closed','closed','','contact-body-from-services-page','','','2021-10-06 03:55:24','2021-10-06 03:55:24','',0,'https://candc117.dev34.info/?elementor_library=contact-body-from-services-page',0,'elementor_library','',0),(3154,1,'2021-10-06 03:55:24','2021-10-06 03:55:24','','Contact body from services page','','inherit','closed','closed','','3153-revision-v1','','','2021-10-06 03:55:24','2021-10-06 03:55:24','',3153,'https://candc117.dev34.info/?p=3154',0,'revision','',0),(3155,1,'2021-10-06 03:55:24','2021-10-06 03:55:24','<h2>Truck Customizations</h2>		\n		<p>Are you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization. </p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','Contact body from services page','','inherit','closed','closed','','3153-revision-v1','','','2021-10-06 03:55:24','2021-10-06 03:55:24','',3153,'https://candc117.dev34.info/?p=3155',0,'revision','',0),(3156,1,'2021-10-06 04:11:48','2021-10-06 04:11:48','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:11:48','2021-10-06 04:11:48','',3151,'https://candc117.dev34.info/?p=3156',0,'revision','',0),(3157,1,'2021-10-06 04:11:48','2021-10-06 04:11:48','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:11:48','2021-10-06 04:11:48','',3151,'https://candc117.dev34.info/?p=3157',0,'revision','',0),(3168,1,'2021-10-06 04:14:16','2021-10-06 04:14:16','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:16','2021-10-06 04:14:16','',3151,'https://candc117.dev34.info/?p=3168',0,'revision','',0),(3165,1,'2021-10-06 04:14:06','2021-10-06 04:14:06','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:06','2021-10-06 04:14:06','',3151,'https://candc117.dev34.info/?p=3165',0,'revision','',0),(3163,1,'2021-10-06 04:14:05','2021-10-06 04:14:05','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:05','2021-10-06 04:14:05','',3151,'https://candc117.dev34.info/?p=3163',0,'revision','',0),(3164,1,'2021-10-06 04:14:06','2021-10-06 04:14:06','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:06','2021-10-06 04:14:06','',3151,'https://candc117.dev34.info/?p=3164',0,'revision','',0),(3166,1,'2021-10-06 04:14:16','2021-10-06 04:14:16','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:16','2021-10-06 04:14:16','',3151,'https://candc117.dev34.info/?p=3166',0,'revision','',0),(3167,1,'2021-10-06 04:14:16','2021-10-06 04:14:16','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:16','2021-10-06 04:14:16','',3151,'https://candc117.dev34.info/?p=3167',0,'revision','',0),(3169,1,'2021-10-06 04:14:28','2021-10-06 04:14:28','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:28','2021-10-06 04:14:28','',3151,'https://candc117.dev34.info/?p=3169',0,'revision','',0),(3170,1,'2021-10-06 04:14:28','2021-10-06 04:14:28','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:28','2021-10-06 04:14:28','',3151,'https://candc117.dev34.info/?p=3170',0,'revision','',0),(3171,1,'2021-10-06 04:14:28','2021-10-06 04:14:28','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:28','2021-10-06 04:14:28','',3151,'https://candc117.dev34.info/?p=3171',0,'revision','',0),(3172,1,'2021-10-06 04:14:39','2021-10-06 04:14:39','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:39','2021-10-06 04:14:39','',3151,'https://candc117.dev34.info/?p=3172',0,'revision','',0),(3173,1,'2021-10-06 04:14:39','2021-10-06 04:14:39','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:39','2021-10-06 04:14:39','',3151,'https://candc117.dev34.info/?p=3173',0,'revision','',0),(3174,1,'2021-10-06 04:14:39','2021-10-06 04:14:39','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:14:39','2021-10-06 04:14:39','',3151,'https://candc117.dev34.info/?p=3174',0,'revision','',0),(3175,1,'2021-10-06 04:15:36','2021-10-06 04:15:36','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:15:36','2021-10-06 04:15:36','',3151,'https://candc117.dev34.info/?p=3175',0,'revision','',0),(3176,1,'2021-10-06 04:15:36','2021-10-06 04:15:36','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:15:36','2021-10-06 04:15:36','',3151,'https://candc117.dev34.info/?p=3176',0,'revision','',0),(3177,1,'2021-10-06 04:15:36','2021-10-06 04:15:36','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:15:36','2021-10-06 04:15:36','',3151,'https://candc117.dev34.info/?p=3177',0,'revision','',0),(3178,1,'2021-10-06 04:15:51','2021-10-06 04:15:51','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:15:51','2021-10-06 04:15:51','',3151,'https://candc117.dev34.info/?p=3178',0,'revision','',0),(3179,1,'2021-10-06 04:15:51','2021-10-06 04:15:51','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:15:51','2021-10-06 04:15:51','',3151,'https://candc117.dev34.info/?p=3179',0,'revision','',0),(3180,1,'2021-10-06 04:15:51','2021-10-06 04:15:51','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:15:51','2021-10-06 04:15:51','',3151,'https://candc117.dev34.info/?p=3180',0,'revision','',0),(3181,1,'2021-10-06 04:16:34','2021-10-06 04:16:34','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:16:34','2021-10-06 04:16:34','',3151,'https://candc117.dev34.info/?p=3181',0,'revision','',0),(3182,1,'2021-10-06 04:16:34','2021-10-06 04:16:34','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:16:34','2021-10-06 04:16:34','',3151,'https://candc117.dev34.info/?p=3182',0,'revision','',0),(3183,1,'2021-10-06 04:16:34','2021-10-06 04:16:34','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:16:34','2021-10-06 04:16:34','',3151,'https://candc117.dev34.info/?p=3183',0,'revision','',0),(3185,1,'2021-10-06 04:18:37','2021-10-06 04:18:37','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />															\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-10-06 04:18:37','2021-10-06 04:18:37','',2811,'https://candc117.dev34.info/?p=3185',0,'revision','',0),(3186,1,'2021-10-06 04:18:37','2021-10-06 04:18:37','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n																<a href=\"https://candc117.dev34.info\">\n							<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />								</a>\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"https://candc117.dev34.info/our-services\">Our Services</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"https://candc117.dev34.info/contact-us/\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-10-06 04:18:37','2021-10-06 04:18:37','',2811,'https://candc117.dev34.info/?p=3186',0,'revision','',0),(3187,1,'2021-10-06 04:20:28','2021-10-06 04:20:28','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:20:28','2021-10-06 04:20:28','',2808,'https://candc117.dev34.info/?p=3187',0,'revision','',0),(3188,1,'2021-10-06 04:20:28','2021-10-06 04:20:28','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/contact\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/contact\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"#\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:20:28','2021-10-06 04:20:28','',2808,'https://candc117.dev34.info/?p=3188',0,'revision','',0),(3189,1,'2021-10-06 04:20:28','2021-10-06 04:20:28','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:20:28','2021-10-06 04:20:28','',2808,'https://candc117.dev34.info/?p=3189',0,'revision','',0),(3190,1,'2021-10-06 04:22:15','2021-10-06 04:22:15','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:22:15','2021-10-06 04:22:15','',2808,'https://candc117.dev34.info/?p=3190',0,'revision','',0),(3191,1,'2021-10-06 04:22:15','2021-10-06 04:22:15','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:22:15','2021-10-06 04:22:15','',2808,'https://candc117.dev34.info/?p=3191',0,'revision','',0),(3192,1,'2021-10-06 04:22:15','2021-10-06 04:22:15','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:22:15','2021-10-06 04:22:15','',2808,'https://candc117.dev34.info/?p=3192',0,'revision','',0),(3193,1,'2021-10-06 04:22:52','2021-10-06 04:22:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:22:52','2021-10-06 04:22:52','',2808,'https://candc117.dev34.info/?p=3193',0,'revision','',0),(3194,1,'2021-10-06 04:22:52','2021-10-06 04:22:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:22:52','2021-10-06 04:22:52','',2808,'https://candc117.dev34.info/?p=3194',0,'revision','',0),(3195,1,'2021-10-06 04:22:52','2021-10-06 04:22:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:22:52','2021-10-06 04:22:52','',2808,'https://candc117.dev34.info/?p=3195',0,'revision','',0),(3196,1,'2021-10-06 04:24:23','2021-10-06 04:24:23','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:24:23','2021-10-06 04:24:23','',3151,'https://candc117.dev34.info/?p=3196',0,'revision','',0),(3197,1,'2021-10-06 04:24:23','2021-10-06 04:24:23','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:24:23','2021-10-06 04:24:23','',3151,'https://candc117.dev34.info/?p=3197',0,'revision','',0),(3198,1,'2021-10-06 04:24:23','2021-10-06 04:24:23','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact Us','','inherit','closed','closed','','3151-revision-v1','','','2021-10-06 04:24:23','2021-10-06 04:24:23','',3151,'https://candc117.dev34.info/?p=3198',0,'revision','',0),(3199,1,'2021-10-06 04:28:59','2021-10-06 04:28:59','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About Us','','publish','closed','open','','about-us','','','2021-10-06 04:37:37','2021-10-06 04:37:37','',0,'https://candc117.dev34.info/?page_id=3199',0,'page','',0),(3208,1,'2021-10-06 04:34:18','2021-10-06 04:34:18','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:34:18','2021-10-06 04:34:18','',3199,'https://candc117.dev34.info/?p=3208',0,'revision','',0),(3204,1,'2021-10-06 04:33:54','2021-10-06 04:33:54','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:33:54','2021-10-06 04:33:54','',3199,'https://candc117.dev34.info/?p=3204',0,'revision','',0),(3200,1,'2021-10-06 04:28:59','2021-10-06 04:28:59','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:28:59','2021-10-06 04:28:59','',3199,'https://candc117.dev34.info/?p=3200',0,'revision','',0),(3218,1,'2021-10-06 04:40:44','2021-10-06 04:40:44','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:40:44','2021-10-06 04:40:44','',2808,'https://candc117.dev34.info/?p=3218',0,'revision','',0),(3202,1,'2021-10-06 04:33:54','2021-10-06 04:33:54','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:33:54','2021-10-06 04:33:54','',3199,'https://candc117.dev34.info/?p=3202',0,'revision','',0),(3203,1,'2021-10-06 04:33:54','2021-10-06 04:33:54','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n<h2>Truck Customizations</h2>\nAre you looking to customize your truck in order to improve its look, and performance? C &amp; C Motorsports is a premier shop for customizing your Chevy/GM, Ford, Dodge, Toyota or Nissan truck. We are a company that was founded by a lifelong truck owner and understand your needs based on budget, performance goals, and offroad or towing capabilities. Whether you are in need of lighting, wheels/tires and a lift package, C &amp; C Motorsport is your partner in providing your next truck customization.&nbsp;\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/pexels-scosche-1149056-1-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>Jeep Customizations</h2>\nThere is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!\n<h2>UTV Customizations</h2>\nDo you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.\n\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\">\n<h2>SUV Customizations</h2>\nThe SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:33:54','2021-10-06 04:33:54','',3199,'https://candc117.dev34.info/?p=3203',0,'revision','',0),(3209,1,'2021-10-06 04:35:28','2021-10-06 04:35:28','<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','contact block from contact page','','publish','closed','closed','','contact-block-from-contact-page','','','2021-10-06 04:35:28','2021-10-06 04:35:28','',0,'https://candc117.dev34.info/?elementor_library=contact-block-from-contact-page',0,'elementor_library','',0),(3210,1,'2021-10-06 04:35:28','2021-10-06 04:35:28','','contact block from contact page','','inherit','closed','closed','','3209-revision-v1','','','2021-10-06 04:35:28','2021-10-06 04:35:28','',3209,'https://candc117.dev34.info/?p=3210',0,'revision','',0),(3206,1,'2021-10-06 04:34:18','2021-10-06 04:34:18','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:34:18','2021-10-06 04:34:18','',3199,'https://candc117.dev34.info/?p=3206',0,'revision','',0),(3207,1,'2021-10-06 04:34:18','2021-10-06 04:34:18','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/jeep-pic-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Jeep Customizations</h2>		\n		<p>There is nothing like owning a jeep. Upgrade your Jeep with cutting edge interior and exterior parts that will gives yours a special and unique look. Whether you are wanting an aggresive or sublte upgrade, C &amp; C Motorsport can help. We specialize in Jeep lighting, winches and bumpers, wheels/tires and lift kits, fender and flare kits and more. Contact C &amp; C Motorsport today to discuss your build out and get ready to take your Jeep to the next level!</p>		\n			<h2>UTV Customizations</h2>		\n		<p>Do you have a UTV that needs attention? Are you wanting to add customizations that will bring your UTV to the next level and allow you to his larger obstacles? C &amp; C Motorsport can add an endless amount of customizations to your side by side that will make is a showstopper. We work with and install all of the top brands of parts and accessories. Adding customizations to your UTV can be a complicated process. Let our team handle the complications and ensue that the job is done right! Contact us today to get started.</p>		\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2.jpg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-300x200.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/C48CCAE8-2-492x328.jpg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n															<img width=\"600\" height=\"400\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1.jpeg 600w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-300x200.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/10/lifted-tahoe-1-1-492x328.jpeg 492w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>SUV Customizations</h2>		\n		<p>The SUV is the ultimate family vehicle. By customizing your SUV you can take your family and friends to new places, safer and more comfortably compared to a stock platform. At C &amp; C Motorsport, our team can customize your SUV to help you travel to your next adventure. We specilize in SUV wheel/tire and lift kit installations, lighting, winches, bumpers, fender flares and more. We can work with any budget and will develop an understanding of your vision in order to ensure we create the perfect SUV buildout. Contact us today to get started!</p>','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:34:18','2021-10-06 04:34:18','',3199,'https://candc117.dev34.info/?p=3207',0,'revision','',0),(3211,1,'2021-10-06 04:35:28','2021-10-06 04:35:28','<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','contact block from contact page','','inherit','closed','closed','','3209-revision-v1','','','2021-10-06 04:35:28','2021-10-06 04:35:28','',3209,'https://candc117.dev34.info/?p=3211',0,'revision','',0),(3215,1,'2021-10-06 04:37:37','2021-10-06 04:37:37','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:37:37','2021-10-06 04:37:37','',3199,'https://candc117.dev34.info/?p=3215',0,'revision','',0),(3213,1,'2021-10-06 04:37:37','2021-10-06 04:37:37','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:37:37','2021-10-06 04:37:37','',3199,'https://candc117.dev34.info/?p=3213',0,'revision','',0),(3214,1,'2021-10-06 04:37:37','2021-10-06 04:37:37','<a href=\"https://candc117.dev34.info/\">Home</a>  .  Pages<!-- .breadcrumbs -->\n			<h2>About C & C Motorsport</h2>		\n		<p style=\"text-align: center;\">C &amp; C Motorsport was created in order to provide the best buildout services for Truck, SUV, UTV and Jeep owners throughout the Pacific Northwest! Our team is comprised of lifelong off-roading and truck enthusiasts who are passionate about what they do and strive to provide the highest level of work and customer service possible. Whether you have customized many or few vehicles, C &amp; C Motorsport will be happy to bring on your next build. We look forward to the opportunity to service your vehicle and truly appreciate your business.</p>		\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About Us','','inherit','closed','closed','','3199-revision-v1','','','2021-10-06 04:37:37','2021-10-06 04:37:37','',3199,'https://candc117.dev34.info/?p=3214',0,'revision','',0),(3216,1,'2021-10-06 04:40:43','2021-10-06 04:40:43','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:40:43','2021-10-06 04:40:43','',2808,'https://candc117.dev34.info/?p=3216',0,'revision','',0),(3217,1,'2021-10-06 04:40:43','2021-10-06 04:40:43','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsport today to discuss your project</h2>		\n		<p>Thank you for your interest in our services. Please complete the form provided, or call or email us for assistance. We look forward to speaking with you soon.</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:40:43','2021-10-06 04:40:43','',2808,'https://candc117.dev34.info/?p=3217',0,'revision','',0),(3219,1,'2021-10-06 04:42:46','2021-10-06 04:42:46','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:42:46','2021-10-06 04:42:46','',2808,'https://candc117.dev34.info/?p=3219',0,'revision','',0),(3220,1,'2021-10-06 04:42:46','2021-10-06 04:42:46','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:42:46','2021-10-06 04:42:46','',2808,'https://candc117.dev34.info/?p=3220',0,'revision','',0),(3221,1,'2021-10-06 04:42:47','2021-10-06 04:42:47','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:42:47','2021-10-06 04:42:47','',2808,'https://candc117.dev34.info/?p=3221',0,'revision','',0),(3222,1,'2021-10-06 04:43:52','2021-10-06 04:43:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:43:52','2021-10-06 04:43:52','',2808,'https://candc117.dev34.info/?p=3222',0,'revision','',0),(3223,1,'2021-10-06 04:43:52','2021-10-06 04:43:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Thank you for your interest in our products and services. To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:43:52','2021-10-06 04:43:52','',2808,'https://candc117.dev34.info/?p=3223',0,'revision','',0),(3227,1,'2021-10-06 04:45:55','2021-10-06 04:45:55','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>Contact us to recieve a free estimate on your vehicle!</p>		\n		<p style=\"text-align: left;\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:45:55','2021-10-06 04:45:55','',2808,'https://candc117.dev34.info/?p=3227',0,'revision','',0),(3224,1,'2021-10-06 04:43:52','2021-10-06 04:43:52','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n		<p style=\"text-align: left;\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:43:52','2021-10-06 04:43:52','',2808,'https://candc117.dev34.info/?p=3224',0,'revision','',0),(3225,1,'2021-10-06 04:45:54','2021-10-06 04:45:54','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n		<p style=\"text-align: left;\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:45:54','2021-10-06 04:45:54','',2808,'https://candc117.dev34.info/?p=3225',0,'revision','',0),(3226,1,'2021-10-06 04:45:55','2021-10-06 04:45:55','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]<p>Contact C &amp; C Motorsport Today to discuss your buildout!</p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n															<img width=\"1024\" height=\"719\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-1024x719.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-300x211.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-768x539.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1-492x346.jpg 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20200912_164715_198-1.jpg 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n			<h2>Welcome to C & C Motorsport!</h2>		\n		<p>We are the Pacific Northwest\'s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C &amp; C Motorsport is a reliable choice for customizing your vehicle. We\'re proudly headquartered in the Smokey Point and operate a well maintenained and professional shop. Contact us today to learn more about how we can help you with your next build out. </p>		\n			<a href=\"#\" role=\"button\">\n						Get Started Today\n					</a>\n			<h2>The C & C Motorsport Difference!</h2>		\n				<h3>\n						Integrity					\n				</h3>\n				<h3>\n						Reliability					\n				</h3>\n				<h3>\n						Quality Service					\n				</h3>\n			<h2>Proudly Servicing Your Offroad Vehicles and UTV\'s</h2>		\n			<h2>Contact C & C today to discuss your buildout</h2>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-09-at-9.20.53-AM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">UTV Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.37.39-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Truck Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-10-at-1.27.40-PM.png\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">Jeep Customizations</a></h3><p>Get Started Today</p>		\n			<figure><a href=\"/our-services\"><img width=\"600\" height=\"490\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/lifted-tahoe-1.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"/our-services\">SUV Customizations</a></h3><p>Get Started Today</p>		\n			<h2>Suspension Systems</h2>		\n		<p>C &amp; C Motorsport provides lift and suspension kit installation services for Trucks, Jeep\'s, UTV\'s and SUV\'s. Whether your looking to increase your clearance, or your payload, we can help. We offer a quick turnaround and can assist with sourcing parts.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"720\" height=\"500\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-300x208.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20201230_220709_461-1-492x342.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n															<img width=\"720\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-300x216.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/IMG_20210118_214223_577-1-492x354.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Wheels and Tires</h2>		\n		<p>Looking for that unique look that will make your vehicle stand out? A rim and tire package is the answer. C &amp; C Motorsport provides quality wheel and tire installation and can also help you choose the best combination for your vehicle. </p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Exterior Lighting</h2>		\n		<p>C &amp; C Motorsport can help install aftermarket exterior lighting on any off road vehicle. Whether your looking for a subtle upgrade, or a complex lighting system to help you tackle any excursion, we can help.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n															<img width=\"920\" height=\"518\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2.jpeg 920w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-300x169.jpeg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-768x432.jpeg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/jeep-lighting-2-492x277.jpeg 492w\" sizes=\"(max-width: 920px) 100vw, 920px\" />															\n															<img width=\"720\" height=\"521\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1.jpg 720w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-300x217.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_145529-1-1-492x356.jpg 492w\" sizes=\"(max-width: 720px) 100vw, 720px\" />															\n			<h2>Body Kits and Accessories</h2>		\n		<p>Want a unique look? Need to install a winch but don\'t want to use your stock bumper? C &amp; C Motorsports provides body kit and accessory installation services. We can help you choose the best combination for your vehicle based on your budget, desired look and utility. Contact us today for a free estimate.</p>		\n                            <a href=\"/contact-us/\"  >\n                    Get Started Today\n                                                        </a>\n			<h2>Contact C & C Motorsports</h2>		\n		<p>To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n		<p style=\"text-align: left;\">To contact us please use the form provided or the contact information below. We look forward to assisting you on your next build!</p>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n															<img width=\"2560\" height=\"1920\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-scaled.jpg 2560w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-300x225.jpg 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1024x768.jpg 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-768x576.jpg 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-1536x1152.jpg 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-2048x1536.jpg 2048w, https://candc117.dev34.info/wp-content/uploads/2021/09/20210113_135831-492x369.jpg 492w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n							<p>“C & C Motorsport made the whole process very easy. They were professional the entire time and I found their rates to be reasonable and work superb.\"</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>John M.</h4>\n								Client\n							<p>“These guys tricked out my side by side with new suspension and lighting. I will be using them again in the near future and highly recommended!</p>\n									<img src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/istockphoto-1265517611-612x612-1.jpeg\" title=\"100% quality guarantee like and 5 stars badge black and gold color.\" alt=\"100% quality guarantee like and 5 stars badge black and gold color.\" />								\n								<h4>Thomas S.</h4>\n								Client','Web Application','','inherit','closed','closed','','2808-revision-v1','','','2021-10-06 04:45:55','2021-10-06 04:45:55','',2808,'https://candc117.dev34.info/?p=3226',0,'revision','',0),(3228,1,'2021-10-06 04:46:35','2021-10-06 04:46:35','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n																<a href=\"https://candc117.dev34.info\">\n							<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />								</a>\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"https://candc117.dev34.info/our-services\">Our Services</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"https://candc117.dev34.info/contact-us/\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-10-06 04:46:35','2021-10-06 04:46:35','',2811,'https://candc117.dev34.info/?p=3228',0,'revision','',0),(3229,1,'2021-10-06 04:46:35','2021-10-06 04:46:35','<h2>Contact us today for a Freee Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n																<a href=\"https://candc117.dev34.info\">\n							<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />								</a>\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"https://candc117.dev34.info/our-services\">Our Services</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"https://candc117.dev34.info/contact-us/\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-10-06 04:46:35','2021-10-06 04:46:35','',2811,'https://candc117.dev34.info/?p=3229',0,'revision','',0),(3230,1,'2021-10-06 04:46:36','2021-10-06 04:46:36','<h2>Contact us today for a Free Estimate!</h2>		\n					<ul>\n							<li>\n											<a href=\"tel:425-772-7485\">\n										Call: 425-772-7485\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"mailto:%20info@candcmotorsport.com\">\n										Email: info@candcmotorsport.com\n											</a>\n									</li>\n						</ul>\n																<a href=\"https://candc117.dev34.info\">\n							<img src=\"https://candc117.dev34.info/wp-content/uploads/elementor/thumbs/Screen-Shot-2021-09-13-at-11.04.03-AM-pd2d50lq40xlrzpi3sc5e8kcp7a5p0a3jln8iyxhc0.png\" title=\"Screen Shot 2021-09-13 at 11.04.03 AM\" alt=\"Screen Shot 2021-09-13 at 11.04.03 AM\" />								</a>\n            <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n            </button>\n            <!-- end of Nav toggler -->\n                <button type=\"button\" data-toggle=\"navbarToggler\" aria-label=\"Toggle navigation\">\n                </button>\n                <nav id=\"site-navigation\">\n                    <ul id=\"navbar-nav\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"https://candc117.dev34.info/our-services\">Our Services</a></li>\n<li id=\"menu-item-2892\"><a href=\"https://candc117.dev34.info/about-us/\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"https://candc117.dev34.info/contact-us/\">Contact us</a></li>\n</ul>                </nav><!-- #site-navigation -->','Header custom 1','','inherit','closed','closed','','2811-revision-v1','','','2021-10-06 04:46:36','2021-10-06 04:46:36','',2811,'https://candc117.dev34.info/?p=3230',0,'revision','',0),(3232,1,'2021-10-20 00:01:10','2021-10-20 00:01:10','<img width=\"434\" height=\"166\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png 434w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM-300x115.png 300w\" sizes=\"(max-width: 434px) 100vw, 434px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-10-20 00:01:10','2021-10-20 00:01:10','',3065,'https://candc117.dev34.info/?p=3232',0,'revision','',0),(3233,1,'2021-10-20 00:01:10','2021-10-20 00:01:10','<img width=\"434\" height=\"166\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png 434w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM-300x115.png 300w\" sizes=\"(max-width: 434px) 100vw, 434px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Smokey Point, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"#\">Our Services</a></li>\n<li id=\"menu-item-2895\"><a href=\"#\">Portfolio</a></li>\n<li id=\"menu-item-2892\"><a href=\"#\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"#\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-10-20 00:01:10','2021-10-20 00:01:10','',3065,'https://candc117.dev34.info/?p=3233',0,'revision','',0),(3234,1,'2021-10-20 00:01:10','2021-10-20 00:01:10','<img width=\"434\" height=\"166\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM.png 434w, https://candc117.dev34.info/wp-content/uploads/2021/09/Screen-Shot-2021-09-13-at-11.04.03-AM-300x115.png 300w\" sizes=\"(max-width: 434px) 100vw, 434px\" />															\n		<p>We are the Pacific Northwest’s trusted choice for Truck, UTV Jeep and SUV customizations. Whether youre looking to travel over bigger terrain, or haul more payload, C and C Motorsport is a reliable choice for customizing your vehicle.</p>		\n			<h2>Contact Us:</h2>		\n					<ul>\n							<li>\n										Call: 425-772-7485\n									</li>\n								<li>\n										Email: info@candcmotorsport.com\n									</li>\n								<li>\n										Everett, WA\n									</li>\n						</ul>\n			<h2>Navigation:</h2>		\n            <ul id=\"shadepro-vertical-menu\"><li id=\"menu-item-2891\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-2893\"><a href=\"https://candc117.dev34.info/our-services\">Our Services</a></li>\n<li id=\"menu-item-2892\"><a href=\"https://candc117.dev34.info/about-us/\">About Us</a></li>\n<li id=\"menu-item-2894\"><a href=\"https://candc117.dev34.info/contact-us/\">Contact us</a></li>\n</ul>        \n			<h2>Secure Browsing:</h2>		\n															<img width=\"1024\" height=\"491\" src=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png\" alt=\"\" loading=\"lazy\" srcset=\"https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1024x491.png 1024w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-300x144.png 300w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-768x368.png 768w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-1536x736.png 1536w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3-492x236.png 492w, https://candc117.dev34.info/wp-content/uploads/2021/09/ssl3.png 1667w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />															\n		<p>Copyright 2021, C and C Motorsport. All Rights Reserved.</p>','Footer Main 1','','inherit','closed','closed','','3065-revision-v1','','','2021-10-20 00:01:10','2021-10-20 00:01:10','',3065,'https://candc117.dev34.info/?p=3234',0,'revision','',0);
/*!40000 ALTER TABLE `wp9l_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_revslider_css`
--

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

--
-- Dumping data for table `wp9l_revslider_css`
--

LOCK TABLES `wp9l_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp9l_revslider_css` DISABLE KEYS */;
INSERT INTO `wp9l_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 `wp9l_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_revslider_css_bkp`
--

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

--
-- Dumping data for table `wp9l_revslider_css_bkp`
--

LOCK TABLES `wp9l_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `wp9l_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `wp9l_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 `wp9l_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_revslider_layer_animations`
--

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

--
-- Dumping data for table `wp9l_revslider_layer_animations`
--

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

--
-- Table structure for table `wp9l_revslider_layer_animations_bkp`
--

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

--
-- Dumping data for table `wp9l_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `wp9l_revslider_navigations`
--

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

--
-- Dumping data for table `wp9l_revslider_navigations`
--

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

--
-- Table structure for table `wp9l_revslider_navigations_bkp`
--

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

--
-- Dumping data for table `wp9l_revslider_navigations_bkp`
--

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

--
-- Table structure for table `wp9l_revslider_sliders`
--

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

--
-- Dumping data for table `wp9l_revslider_sliders`
--

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

--
-- Table structure for table `wp9l_revslider_sliders_bkp`
--

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

--
-- Dumping data for table `wp9l_revslider_sliders_bkp`
--

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

--
-- Table structure for table `wp9l_revslider_slides`
--

DROP TABLE IF EXISTS `wp9l_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_revslider_slides`
--

LOCK TABLES `wp9l_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp9l_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp9l_revslider_slides` VALUES (1,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/red-buggy-rushes-through-the-field-in-the-dust-PZPED62-1-scaled.jpg\",\"imageId\":2841,\"imageLib\":\"medialibrary\",\"imageWidth\":2560,\"imageHeight\":1593,\"imageRatio\":1.60703075957313235022638764348812401294708251953125},\"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\"}}','{\"0\":{\"text\":\"Welcome To:\",\"alias\":\"Text-0\",\"uid\":0,\"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\":{\"v\":\"262px\",\"e\":true},\"n\":{\"v\":\"216px\"},\"t\":{\"v\":\"164px\"},\"m\":{\"v\":\"101px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"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}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"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\":\"50px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"-1\"}},\"lineHeight\":{\"d\":{\"v\":\"70\"},\"n\":{\"v\":\"57\"},\"t\":{\"v\":\"43\"},\"m\":{\"v\":\"26\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"C & C Motorsport\",\"alias\":\"Text-1\",\"uid\":1,\"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\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"38px\"},\"t\":{\"v\":\"28px\"},\"m\":{\"v\":\"17px\"}},\"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},\"group\":{\"groupOrder\":11},\"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}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"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\":\"100px\",\"e\":true},\"n\":{\"v\":\"82px\"},\"t\":{\"v\":\"62px\"},\"m\":{\"v\":\"38px\"}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"letterSpacing\":{\"d\":{\"v\":\"-1\"}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"99px\"},\"t\":{\"v\":\"75px\"},\"m\":{\"v\":\"46px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"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\":\"Top Level Offroad Customizations\",\"alias\":\"Copy text-0\",\"uid\":2,\"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\":{\"v\":\"466px\",\"e\":true},\"n\":{\"v\":\"384px\"},\"t\":{\"v\":\"291px\"},\"m\":{\"v\":\"179px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"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}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"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\":\"40px\",\"e\":true},\"n\":{\"v\":\"33px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"-1\"}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"\",\"alias\":\"Shape-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1086px\",\"e\":true},\"n\":{\"v\":\"896px\"},\"t\":{\"v\":\"680px\"},\"m\":{\"v\":\"419px\"}},\"height\":{\"d\":{\"v\":\"322px\",\"e\":true},\"n\":{\"v\":\"265px\"},\"t\":{\"v\":\"201px\"},\"m\":{\"v\":\"124px\"}},\"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}},\"y\":{\"d\":{\"v\":\"41px\",\"e\":true},\"n\":{\"v\":\"33px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"15px\"}},\"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\":8},\"group\":{\"groupOrder\":8},\"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\"}}},\"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,\"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}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":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(0,0,0,0.5)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}','{\"version\":\"6.5.8\"}'),(2,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/candc117.dev34.info\\/wp-content\\/uploads\\/2021\\/09\\/candc-motorsports.jpg\",\"imageId\":3105,\"imageLib\":\"medialibrary\",\"imageWidth\":2100,\"imageHeight\":1000,\"imageRatio\":2.100000000000000088817841970012523233890533447265625},\"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\":{\"speed\":470,\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"}}','{\"0\":{\"text\":\"Welcome To:\",\"alias\":\"Text-0\",\"uid\":0,\"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\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"y\":{\"d\":{\"v\":\"151px\",\"e\":true},\"n\":{\"v\":\"124px\"},\"t\":{\"v\":\"94px\"},\"m\":{\"v\":\"57px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}},\"skewX\":45},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":2050,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":2050}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6950,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"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\":\"50px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"5px\"},\"t\":{\"v\":\"3px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"70\"},\"n\":{\"v\":\"57\"},\"t\":{\"v\":\"43\"},\"m\":{\"v\":\"26\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"C & C Motorsport\",\"alias\":\"Text-1\",\"uid\":1,\"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\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"y\":{\"d\":{\"v\":\"220px\",\"e\":true},\"n\":{\"v\":\"181px\"},\"t\":{\"v\":\"137px\"},\"m\":{\"v\":\"84px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":4080,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":4080},\"sfx\":{\"effect\":\"blocktoright\",\"color\":\"#ff3a2d\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":4920,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"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\":\"100px\",\"e\":true},\"n\":{\"v\":\"82px\"},\"t\":{\"v\":\"62px\"},\"m\":{\"v\":\"38px\"}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"letterSpacing\":{\"d\":{\"v\":\"-1\"}},\"lineHeight\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"99px\"},\"t\":{\"v\":\"75px\"},\"m\":{\"v\":\"46px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"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\":\"Top Level Offroad Customizations\",\"alias\":\"Copy text-0\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"54px\"},\"t\":{\"v\":\"41px\"},\"m\":{\"v\":\"25px\"}},\"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\":{\"v\":\"49px\",\"e\":true},\"n\":{\"v\":\"40px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"18px\"}},\"y\":{\"d\":{\"v\":\"352px\",\"e\":true},\"n\":{\"v\":\"290px\"},\"t\":{\"v\":\"220px\"},\"m\":{\"v\":\"135px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"-50\"},\"n\":{\"v\":\"-41\"},\"t\":{\"v\":\"-31\"},\"m\":{\"v\":\"-19\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":3160,\"startRelative\":3160,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":4840,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":3160},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"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\":\"40px\",\"e\":true},\"n\":{\"v\":\"33px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"-1\"}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"\",\"alias\":\"Shape-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"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}},\"covermode\":\"cover-proportional\",\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":8},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8},\"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\"}}},\"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\":{\"ease\":\"none\",\"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}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":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\":\"{&type&:&linear&,&angle&:&95&,&colors&:[{&r&:12,&g&:12,&b&:12,&a&:1,&position&:0,&align&:&top&},{&r&:12,&g&:12,&b&:12,&a&:1,&position&:0,&align&:&bottom&},{&r&:215,&g&:215,&b&:215,&a&:0,&position&:100,&align&:&bottom&},{&r&:215,&g&:215,&b&:215,&a&:0,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"4\":{\"text\":\"\",\"alias\":\"Shape-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"746px\",\"e\":true},\"n\":{\"v\":\"616px\"},\"t\":{\"v\":\"468px\"},\"m\":{\"v\":\"288px\"}},\"height\":{\"d\":{\"v\":\"12\",\"e\":true},\"n\":{\"v\":\"9\"},\"t\":{\"v\":\"6\"},\"m\":{\"v\":\"3\"}},\"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\":\"50px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"y\":{\"d\":{\"v\":\"331px\",\"e\":true},\"n\":{\"v\":\"273px\"},\"t\":{\"v\":\"207px\"},\"m\":{\"v\":\"127px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"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\":\"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},\"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\":{\"start\":2030,\"startRelative\":2030,\"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\":6670,\"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}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":2030},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"#ff3a2d\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}','{\"version\":\"6.5.8\"}');
/*!40000 ALTER TABLE `wp9l_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `wp9l_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_revslider_slides_bkp`
--

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

--
-- Table structure for table `wp9l_revslider_static_slides`
--

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

--
-- Dumping data for table `wp9l_revslider_static_slides`
--

LOCK TABLES `wp9l_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp9l_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp9l_revslider_static_slides` VALUES (1,1,'[]','','{\"temp\":true}');
/*!40000 ALTER TABLE `wp9l_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_revslider_static_slides_bkp`
--

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

--
-- Dumping data for table `wp9l_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `wp9l_term_relationships`
--

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

--
-- Dumping data for table `wp9l_term_relationships`
--

LOCK TABLES `wp9l_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp9l_term_relationships` DISABLE KEYS */;
INSERT INTO `wp9l_term_relationships` VALUES (1,1,0),(2885,16,0),(2886,16,0),(2887,16,0),(2888,16,0),(2889,16,0),(2890,16,0),(2891,17,0),(2893,17,0),(3209,18,0),(2892,17,0),(2894,17,0),(3153,18,0),(3159,18,0);
/*!40000 ALTER TABLE `wp9l_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_term_taxonomy`
--

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

--
-- Dumping data for table `wp9l_term_taxonomy`
--

LOCK TABLES `wp9l_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp9l_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp9l_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(16,16,'nav_menu','',0,6),(17,17,'nav_menu','',0,4),(18,18,'elementor_library_type','',0,3);
/*!40000 ALTER TABLE `wp9l_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_termmeta`
--

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

--
-- Dumping data for table `wp9l_termmeta`
--

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

--
-- Table structure for table `wp9l_terms`
--

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

--
-- Dumping data for table `wp9l_terms`
--

LOCK TABLES `wp9l_terms` WRITE;
/*!40000 ALTER TABLE `wp9l_terms` DISABLE KEYS */;
INSERT INTO `wp9l_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Menu 1','menu-1',0),(17,'main updated 1','main-updated-1',0),(18,'section','section',0);
/*!40000 ALTER TABLE `wp9l_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_usermeta`
--

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

--
-- Dumping data for table `wp9l_usermeta`
--

LOCK TABLES `wp9l_usermeta` WRITE;
/*!40000 ALTER TABLE `wp9l_usermeta` DISABLE KEYS */;
INSERT INTO `wp9l_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,'wp9l_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp9l_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"a874f885e0669ece15ae0261b18f10d322603257f9cefc40d1572484604f3159\";a:4:{s:10:\"expiration\";i:1634860815;s:2:\"ip\";s:12:\"67.183.57.11\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36\";s:5:\"login\";i:1634688015;}}'),(17,1,'wp9l_dashboard_quick_press_last_post_id','3231'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"67.183.57.0\";}'),(19,1,'rocket_boxes','a:0:{}'),(20,1,'last_update','1631201713'),(21,1,'woocommerce_admin_activity_panel_inbox_last_read','1631201718573'),(22,1,'wc_last_active','1634688000'),(23,1,'wp9l_user-settings','editor=tinymce&hidetb=1&libraryContent=browse'),(24,1,'wp9l_user-settings-time','1631203688'),(25,1,'closedpostboxes_page','a:1:{i:0;s:23:\"acf-group_5b5ab6357a14d\";}'),(26,1,'metaboxhidden_page','a:0:{}'),(27,1,'meta-box-order_page','a:4:{s:6:\"normal\";s:0:\"\";s:4:\"side\";s:43:\"acf-group_5b5ab6357a14d,rocket_post_exclude\";s:15:\"acf_after_title\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),(39,1,'nav_menu_recently_edited','17'),(30,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(29,1,'_woocommerce_tracks_anon_id','woo:8b+6LAiz5TPjXZKYhSJCnqzg'),(31,1,'_order_count','0'),(32,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(33,1,'metaboxhidden_nav-menus','a:20:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:29:\"add-post-type-shadepro_header\";i:3;s:29:\"add-post-type-shadepro_footer\";i:4;s:18:\"add-post-type-team\";i:5;s:17:\"add-post-type-job\";i:6;s:21:\"add-post-type-service\";i:7;s:23:\"add-post-type-portfolio\";i:8;s:12:\"add-post_tag\";i:9;s:15:\"add-product_cat\";i:10;s:15:\"add-product_tag\";i:11;s:17:\"add-team-category\";i:12;s:12:\"add-team-tag\";i:13;s:16:\"add-job-category\";i:14;s:12:\"add-job-type\";i:15;s:16:\"add-job-location\";i:16;s:20:\"add-service-category\";i:17;s:15:\"add-service-tag\";i:18;s:22:\"add-portfolio-category\";i:19;s:17:\"add-portfolio-tag\";}');
/*!40000 ALTER TABLE `wp9l_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_users`
--

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

--
-- Dumping data for table `wp9l_users`
--

LOCK TABLES `wp9l_users` WRITE;
/*!40000 ALTER TABLE `wp9l_users` DISABLE KEYS */;
INSERT INTO `wp9l_users` VALUES (1,'admin','$P$BJ2oDlITqSFlrSA6RGNa59fxLwFZi6.','admin','alex@inspirable.com','https://candc117.dev34.info','2021-09-09 02:20:35','',0,'admin');
/*!40000 ALTER TABLE `wp9l_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wp9l_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonce_action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nonce_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1037 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_admin_note_actions`
--

LOCK TABLES `wp9l_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp9l_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp9l_wc_admin_note_actions` VALUES (350,1,'mercadopago_q3_2021_EN','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN','actioned',1,'',NULL,NULL),(1000,2,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),(1001,3,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,'',NULL,NULL),(1002,4,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,'',NULL,NULL),(1003,5,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,'',NULL,NULL),(1004,6,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,'',NULL,NULL),(1005,7,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'',NULL,NULL),(1006,8,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,'',NULL,NULL),(1007,9,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'',NULL,NULL),(1008,10,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'',NULL,NULL),(1009,11,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,'',NULL,NULL),(1010,12,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,'',NULL,NULL),(1011,13,'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,'',NULL,NULL),(1013,14,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,'',NULL,NULL),(1014,15,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,'',NULL,NULL),(1015,16,'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,'',NULL,NULL),(1016,17,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,'',NULL,NULL),(1017,18,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'',NULL,NULL),(1018,19,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'',NULL,NULL),(1019,20,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,'',NULL,NULL),(1020,21,'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,'',NULL,NULL),(1021,22,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,'',NULL,NULL),(1022,23,'update-wc-subscriptions-3-0-15','View latest version','https://candc117.dev34.info/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned',1,'',NULL,NULL),(1023,24,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,'',NULL,NULL),(1024,27,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(1025,28,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(1026,29,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(1027,30,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(1028,31,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(1029,31,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(1030,32,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(1031,32,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(1032,33,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(1033,33,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(1034,34,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(1035,34,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(38,35,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,'',NULL,NULL),(76,36,'notify-refund-returns-page','Edit page','https://candc117.dev34.info/wp-admin/post.php?post=13&action=edit','actioned',0,'',NULL,NULL),(77,37,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,'',NULL,NULL),(152,38,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,'',NULL,NULL),(153,39,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(154,39,'affirm-insight-first-product-and-payment','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(1012,14,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,'',NULL,NULL),(229,40,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,'',NULL,NULL),(230,41,'add-first-product','Add a product','https://candc117.dev34.info/wp-admin/admin.php?page=wc-admin&task=products','actioned',0,'',NULL,NULL),(268,42,'learn-more','Learn more','https://docs.woocommerce.com/document/managing-products/?utm_source=inbox','actioned',0,'',NULL,NULL),(343,43,'tracking-opt-in','Activate usage tracking','','actioned',1,'',NULL,NULL),(344,44,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,'',NULL,NULL),(345,45,'learn-more','Learn more','https://woocommerce.com/payments/','unactioned',0,'',NULL,NULL),(346,45,'get-started','Get started','https://candc117.dev34.info/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(347,46,'open-marketing-hub','Open marketing hub','https://candc117.dev34.info/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,'',NULL,NULL),(348,47,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(349,47,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(1036,48,'learn-more','Learn more','https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch','unactioned',1,'',NULL,NULL);
/*!40000 ALTER TABLE `wp9l_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_wc_admin_notes`
--

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

--
-- Dumping data for table `wp9l_wc_admin_notes`
--

LOCK TABLES `wp9l_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp9l_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp9l_wc_admin_notes` VALUES (1,'mercadopago_q3_2021_EN','marketing','en_US','Get paid with Mercado Pago Checkout','Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2021-09-09 15:34:42',NULL,0,'plain','',0,'info'),(2,'wayflyer_q3_2021','marketing','en_US','Grow your revenue with Wayflyer financing and analytics','Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.','{}','pending','woocommerce.com','2021-09-09 15:34:42',NULL,0,'plain','',0,'info'),(3,'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.','{}','pending','woocommerce.com','2021-09-09 15:34:42',NULL,0,'plain','',0,'info'),(4,'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-09-09 15:34:42',NULL,0,'plain','',0,'info'),(5,'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-09-09 15:34:42',NULL,0,'plain','',0,'info'),(6,'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-09-09 15:34:42',NULL,0,'plain','',0,'info'),(7,'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-09-09 15:34:42',NULL,0,'plain','',0,'info'),(8,'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-09-09 15:34:42',NULL,0,'plain','',0,'info'),(9,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(10,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(11,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(12,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(13,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(14,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(15,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(16,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(17,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(18,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(19,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(20,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(21,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(22,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(23,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(24,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(25,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(26,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(27,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(28,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(29,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(30,'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.','{}','unactioned','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(31,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(32,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(33,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(34,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-09-09 15:34:43',NULL,0,'plain','',0,'info'),(35,'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-09-09 15:34:43',NULL,0,'plain','',0,'info'),(36,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2021-09-09 15:34:46',NULL,0,'plain','',0,'info'),(37,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-09-09 15:34:46',NULL,0,'plain','',0,'info'),(38,'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-09-10 16:08:09',NULL,0,'plain','',0,'info'),(39,'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.<br><br>Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-09-10 16:08:09',NULL,0,'plain','',0,'info'),(40,'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-09-11 15:36:10',NULL,0,'plain','',0,'info'),(41,'wc-admin-add-first-product-note','email','en_US','Add your first product','{greetings}<br /><br />Nice one; you\'ve created a WooCommerce store! Now it\'s time to add your first product and get ready to start selling.<br /><br />There are three ways to add your products: you can <strong>create products manually, import them at once via CSV file</strong>, or <strong>migrate them from another service</strong>.<br /><br /><a href=\"https://docs.woocommerce.com/document/managing-products/?utm_source=help_panel\">Explore our docs</a> for more information, or just get started!','{\"role\":\"administrator\"}','unactioned','woocommerce-admin','2021-09-11 15:36:10',NULL,0,'plain','https://candc117.dev34.info/wp-content/plugins/woocommerce/packages/woocommerce-admin/images/admin_notes/dashboard-widget-setup.png',0,'info'),(42,'wc-admin-adding-and-managing-products','info','en_US','Adding and Managing Products','Learn more about how to set up products in WooCommerce through our useful documentation about adding and managing products.','{}','unactioned','woocommerce-admin','2021-09-12 16:18:57',NULL,0,'plain','',0,'info'),(43,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://candc117.dev34.info/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2021-09-16 18:20:03',NULL,0,'plain','',0,'info'),(44,'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-09-16 18:20:03',NULL,0,'plain','',0,'info'),(45,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooCommerce Payments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','unactioned','woocommerce-admin','2021-09-16 18:20:03',NULL,0,'plain','',0,'info'),(46,'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-09-16 18:20:03',NULL,0,'plain','',0,'info'),(47,'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-09-16 18:20:03',NULL,0,'plain','',0,'info'),(48,'bbpos-chipper-launch','marketing','en_US','Ready to grow your business beyond online?','Collect payment in person for orders placed online using WooCommerce In-Person Payments. The BBPOS Chipper card reader can process payments securely, and keep everything synced in your WooCommerce Payments dashboard – no matter where you are.','{}','pending','woocommerce.com','2021-10-16 04:25:14',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wp9l_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_wc_category_lookup`
--

DROP TABLE IF EXISTS `wp9l_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_category_lookup`
--

LOCK TABLES `wp9l_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp9l_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp9l_wc_category_lookup` VALUES (15,15);
/*!40000 ALTER TABLE `wp9l_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wp9l_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_customer_lookup`
--

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

--
-- Table structure for table `wp9l_wc_download_log`
--

DROP TABLE IF EXISTS `wp9l_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_download_log`
--

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

--
-- Table structure for table `wp9l_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wp9l_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wp9l_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wp9l_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_order_product_lookup`
--

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

--
-- Table structure for table `wp9l_wc_order_stats`
--

DROP TABLE IF EXISTS `wp9l_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_order_stats`
--

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

--
-- Table structure for table `wp9l_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wp9l_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wp9l_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wp9l_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_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_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_product_meta_lookup`
--

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

--
-- Table structure for table `wp9l_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wp9l_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_reserved_stock`
--

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

--
-- Table structure for table `wp9l_wc_tax_rate_classes`
--

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

--
-- Dumping data for table `wp9l_wc_tax_rate_classes`
--

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

--
-- Table structure for table `wp9l_wc_webhooks`
--

DROP TABLE IF EXISTS `wp9l_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wc_webhooks`
--

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

--
-- Table structure for table `wp9l_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp9l_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wp9l_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp9l_woocommerce_log`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_log`
--

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

--
-- Table structure for table `wp9l_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wp9l_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_order_items`
--

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

--
-- Table structure for table `wp9l_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp9l_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp9l_woocommerce_sessions`
--

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

--
-- Dumping data for table `wp9l_woocommerce_sessions`
--

LOCK TABLES `wp9l_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp9l_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp9l_woocommerce_sessions` VALUES (1,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:766:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2021-09-09T15:35:13+00:00\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:19:\"alex@inspirable.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1631374671);
/*!40000 ALTER TABLE `wp9l_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wp9l_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_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_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wp9l_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wp9l_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wp9l_woocommerce_tax_rate_locations`
--

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

--
-- Dumping data for table `wp9l_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wp9l_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp9l_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_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_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wp9l_wpf_filters`
--

DROP TABLE IF EXISTS `wp9l_wpf_filters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wpf_filters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(128) DEFAULT NULL,
  `setting_data` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wpf_filters`
--

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

--
-- Table structure for table `wp9l_wpf_modules`
--

DROP TABLE IF EXISTS `wp9l_wpf_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wpf_modules` (
  `id` smallint(3) NOT NULL AUTO_INCREMENT,
  `code` varchar(32) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `type_id` tinyint(1) NOT NULL DEFAULT 0,
  `label` varchar(64) DEFAULT NULL,
  `ex_plug_dir` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wpf_modules`
--

LOCK TABLES `wp9l_wpf_modules` WRITE;
/*!40000 ALTER TABLE `wp9l_wpf_modules` DISABLE KEYS */;
INSERT INTO `wp9l_wpf_modules` VALUES (1,'adminmenu',1,1,'Admin Menu',NULL),(2,'options',1,1,'Options',NULL),(3,'user',1,1,'Users',NULL),(4,'pages',1,1,'Pages',NULL),(5,'templates',1,1,'templates',NULL),(6,'promo',1,1,'promo',NULL),(7,'admin_nav',1,1,'admin_nav',NULL),(8,'woofilters',1,1,'woofilters',NULL),(9,'woofilters_widget',1,1,'woofilters_widget',NULL),(10,'mail',1,1,'mail',NULL);
/*!40000 ALTER TABLE `wp9l_wpf_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_wpf_modules_type`
--

DROP TABLE IF EXISTS `wp9l_wpf_modules_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wpf_modules_type` (
  `id` smallint(3) NOT NULL AUTO_INCREMENT,
  `label` varchar(32) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wpf_modules_type`
--

LOCK TABLES `wp9l_wpf_modules_type` WRITE;
/*!40000 ALTER TABLE `wp9l_wpf_modules_type` DISABLE KEYS */;
INSERT INTO `wp9l_wpf_modules_type` VALUES (1,'system'),(6,'addons');
/*!40000 ALTER TABLE `wp9l_wpf_modules_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_wpf_usage_stat`
--

DROP TABLE IF EXISTS `wp9l_wpf_usage_stat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wpf_usage_stat` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(64) NOT NULL,
  `visits` int(11) NOT NULL DEFAULT 0,
  `spent_time` int(11) NOT NULL DEFAULT 0,
  `modify_timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wpf_usage_stat`
--

LOCK TABLES `wp9l_wpf_usage_stat` WRITE;
/*!40000 ALTER TABLE `wp9l_wpf_usage_stat` DISABLE KEYS */;
INSERT INTO `wp9l_wpf_usage_stat` VALUES (1,'installed',1,0,'2021-09-09 15:34:34');
/*!40000 ALTER TABLE `wp9l_wpf_usage_stat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9l_wpr_rucss_resources`
--

DROP TABLE IF EXISTS `wp9l_wpr_rucss_resources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wpr_rucss_resources` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `type` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `media` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'all',
  `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hash` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `prewarmup` tinyint(1) unsigned DEFAULT 0,
  `warmup_status` tinyint(1) unsigned DEFAULT 0,
  `modified` datetime DEFAULT '0000-00-00 00:00:00',
  `last_accessed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`),
  KEY `url` (`url`(150)),
  KEY `type` (`type`),
  KEY `last_accessed` (`last_accessed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wpr_rucss_resources`
--

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

--
-- Table structure for table `wp9l_wpr_rucss_used_css`
--

DROP TABLE IF EXISTS `wp9l_wpr_rucss_used_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9l_wpr_rucss_used_css` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `css` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `unprocessedcss` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `retries` tinyint(1) NOT NULL DEFAULT 1,
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9l_wpr_rucss_used_css`
--

LOCK TABLES `wp9l_wpr_rucss_used_css` WRITE;
/*!40000 ALTER TABLE `wp9l_wpr_rucss_used_css` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp9l_wpr_rucss_used_css` 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-10-19 19:31:14
